registrations) { return $participant->whereHas('registrations.event.course.lecturer', fn ($q) => $q->where('team_id', $user->current_team_id)) ->exists(); } return false; } /** * Determine whether the user can create models. * * @return \Illuminate\Auth\Access\Response|bool */ public function create(User $user): bool { return false; } /** * Determine whether the user can update the model. * * @return \Illuminate\Auth\Access\Response|bool */ public function update(User $user, Participant $participant): bool { return false; } /** * Determine whether the user can delete the model. * * @return \Illuminate\Auth\Access\Response|bool */ public function delete(User $user, Participant $participant): bool { return false; } /** * Determine whether the user can restore the model. * * @return \Illuminate\Auth\Access\Response|bool */ public function restore(User $user, Participant $participant): bool { return false; } /** * Determine whether the user can permanently delete the model. * * @return \Illuminate\Auth\Access\Response|bool */ public function forceDelete(User $user, Participant $participant): bool { return false; } }