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