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