Files
Nexora/app/Policies/RolePolicy.php
2025-05-07 00:07:40 +02:00

67 lines
1.4 KiB
PHP

<?php
namespace App\Policies;
use Spatie\Permission\Models\Role;
use App\Models\User;
use Illuminate\Auth\Access\Response;
class RolePolicy
{
/**
* Determine whether the user can view any models.
*/
public function viewAny(User $user): bool
{
return $user->hasPermissionTo('role.view');
}
/**
* Determine whether the user can view the model.
*/
public function view(User $user, Role $role): bool
{
return $user->hasPermissionTo('role.view');
}
/**
* Determine whether the user can create models.
*/
public function create(User $user): bool
{
return $user->hasPermissionTo('role.create');
}
/**
* Determine whether the user can update the model.
*/
public function update(User $user, Role $role): bool
{
return $user->hasPermissionTo('role.edit') && !$role->is_protected;
}
/**
* Determine whether the user can delete the model.
*/
public function delete(User $user, Role $role): bool
{
return $user->hasPermissionTo('role.delete') && !$role->is_protected;
}
/**
* Determine whether the user can restore the model.
*/
public function restore(User $user, Role $role): bool
{
return false;
}
/**
* Determine whether the user can permanently delete the model.
*/
public function forceDelete(User $user, Role $role): bool
{
return false;
}
}