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