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