51 lines
987 B
PHP
51 lines
987 B
PHP
<?php
|
|
|
|
namespace App\Policies;
|
|
|
|
use App\Models\User;
|
|
use App\Models\Todo;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class TodoPolicy
|
|
{
|
|
/**
|
|
* Determine whether the user can view any models.
|
|
*/
|
|
public function viewAny(User $user): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can view the model.
|
|
*/
|
|
public function view(User $user, Todo $todo): bool
|
|
{
|
|
return $user->id === $todo->user_id;
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can create models.
|
|
*/
|
|
public function create(User $user): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can update the model.
|
|
*/
|
|
public function update(User $user, Todo $todo): bool
|
|
{
|
|
return $user->id === $todo->user_id;
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can delete the model.
|
|
*/
|
|
public function delete(User $user, Todo $todo): bool
|
|
{
|
|
return $user->id === $todo->user_id;
|
|
}
|
|
}
|