70 lines
1.6 KiB
PHP
70 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Policies;
|
|
|
|
use App\Models\Visitor;
|
|
use Illuminate\Auth\Access\HandlesAuthorization;
|
|
use Illuminate\Foundation\Auth\User as AuthUser;
|
|
|
|
class VisitorPolicy
|
|
{
|
|
use HandlesAuthorization;
|
|
|
|
public function viewAny(AuthUser $authUser): bool
|
|
{
|
|
return $authUser->can('ViewAny:Visitor');
|
|
}
|
|
|
|
public function view(AuthUser $authUser, Visitor $visitor): bool
|
|
{
|
|
return $authUser->can('View:Visitor');
|
|
}
|
|
|
|
public function create(AuthUser $authUser): bool
|
|
{
|
|
return $authUser->can('Create:Visitor');
|
|
}
|
|
|
|
public function update(AuthUser $authUser, Visitor $visitor): bool
|
|
{
|
|
return $authUser->can('Update:Visitor');
|
|
}
|
|
|
|
public function delete(AuthUser $authUser, Visitor $visitor): bool
|
|
{
|
|
return $authUser->can('Delete:Visitor');
|
|
}
|
|
|
|
public function restore(AuthUser $authUser, Visitor $visitor): bool
|
|
{
|
|
return $authUser->can('Restore:Visitor');
|
|
}
|
|
|
|
public function forceDelete(AuthUser $authUser, Visitor $visitor): bool
|
|
{
|
|
return $authUser->can('ForceDelete:Visitor');
|
|
}
|
|
|
|
public function forceDeleteAny(AuthUser $authUser): bool
|
|
{
|
|
return $authUser->can('ForceDeleteAny:Visitor');
|
|
}
|
|
|
|
public function restoreAny(AuthUser $authUser): bool
|
|
{
|
|
return $authUser->can('RestoreAny:Visitor');
|
|
}
|
|
|
|
public function replicate(AuthUser $authUser, Visitor $visitor): bool
|
|
{
|
|
return $authUser->can('Replicate:Visitor');
|
|
}
|
|
|
|
public function reorder(AuthUser $authUser): bool
|
|
{
|
|
return $authUser->can('Reorder:Visitor');
|
|
}
|
|
}
|