I have a many to many relationship that I'm working with between User
and Task
models. A user belongs to many tasks and a task belongs to many users. I have a pivot table called task_user
.
In my API, I have a route defined as follows:
Route::get('/users/{user}/tasks', 'TaskUserController@all');
I want to write a policy to enforce that the currently logged in user, auth()->user
, is the user being requested in the route. Basically, a user can only view their own tasks.
How can I write a policy class for the nested resource controller TaskUserController
?