106 lines
2.3 KiB
PHP
106 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace App\Policies;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Auth\Access\Response;
|
|
|
|
class UserPolicy
|
|
{
|
|
/**
|
|
* Determine whether the user can view any models.
|
|
*/
|
|
public function viewAny(User $user): bool
|
|
{
|
|
return $user->can('ViewAny:User');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can view the model.
|
|
*/
|
|
public function view(User $user, User $model): bool
|
|
{
|
|
return $user->can('View:User');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can create models.
|
|
*/
|
|
public function create(User $user): bool
|
|
{
|
|
return $user->can('Create:User');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can update the model.
|
|
*/
|
|
public function update(User $user, User $model): bool
|
|
{
|
|
return $user->can('Update:User');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can delete the model.
|
|
*/
|
|
public function delete(User $user, User $model): bool
|
|
{
|
|
return $user->can('Delete:User');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can restore the model.
|
|
*/
|
|
public function restore(User $user, User $model): bool
|
|
{
|
|
return $user->can('Restore:User');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can permanently delete the model.
|
|
*/
|
|
public function forceDelete(User $user, User $model): bool
|
|
{
|
|
return $user->can('ForceDelete:User');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can delete any models.
|
|
*/
|
|
public function deleteAny(User $user): bool
|
|
{
|
|
return $user->can('DeleteAny:User');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can restore any models.
|
|
*/
|
|
public function restoreAny(User $user): bool
|
|
{
|
|
return $user->can('RestoreAny:User');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can permanently delete any models.
|
|
*/
|
|
public function forceDeleteAny(User $user): bool
|
|
{
|
|
return $user->can('ForceDeleteAny:User');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can replicate the model.
|
|
*/
|
|
public function replicate(User $user, User $model): bool
|
|
{
|
|
return $user->can('Replicate:User');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can reorder models.
|
|
*/
|
|
public function reorder(User $user): bool
|
|
{
|
|
return $user->can('Reorder:User');
|
|
}
|
|
}
|