can('ViewAny:Client'); } public function view(AuthUser $authUser, Client $client): bool { return $authUser->can('View:Client'); } public function create(AuthUser $authUser): bool { return $authUser->can('Create:Client'); } public function update(AuthUser $authUser, Client $client): bool { return $authUser->can('Update:Client'); } public function delete(AuthUser $authUser, Client $client): bool { return $authUser->can('Delete:Client'); } public function restore(AuthUser $authUser, Client $client): bool { return $authUser->can('Restore:Client'); } public function forceDelete(AuthUser $authUser, Client $client): bool { return $authUser->can('ForceDelete:Client'); } public function forceDeleteAny(AuthUser $authUser): bool { return $authUser->can('ForceDeleteAny:Client'); } public function restoreAny(AuthUser $authUser): bool { return $authUser->can('RestoreAny:Client'); } public function replicate(AuthUser $authUser, Client $client): bool { return $authUser->can('Replicate:Client'); } public function reorder(AuthUser $authUser): bool { return $authUser->can('Reorder:Client'); } }