created_by === $user->id; } /** * Determine whether the user can delete the model. * * @param \App\Models\User $user * @param \App\Models\Library $library * @return \Illuminate\Auth\Access\Response|bool */ public function delete(User $user, Library $library) { return false; } /** * Determine whether the user can restore the model. * * @param \App\Models\User $user * @param \App\Models\Library $library * @return \Illuminate\Auth\Access\Response|bool */ public function restore(User $user, Library $library) { return false; } /** * Determine whether the user can permanently delete the model. * * @param \App\Models\User $user * @param \App\Models\Library $library * @return \Illuminate\Auth\Access\Response|bool */ public function forceDelete(User $user, Library $library) { return false; } }