Skip to content

Commit

Permalink
added comment
Browse files Browse the repository at this point in the history
  • Loading branch information
neshanth committed Oct 5, 2024
1 parent 67e7ad6 commit c4c48eb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app/Http/Controllers/Tag/TagController.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public function addTags(Request $request,$taskId)
$task->tags()->sync($request->tagIds);
return response()->json(["msg" => "Tags Added"]);
}
// Get all Tags
public function getAllTags()
{
$tags = Tag::select("id","tag_name")->get();
Expand Down

0 comments on commit c4c48eb

Please sign in to comment.