role === 'admin'; } /** * Determine whether the user can update the model. * * @param \App\Models\User $user * @param \App\Models\Round $round * @return \Illuminate\Auth\Access\Response|bool */ public function update(User $user, Round $round) { return $user->role === 'admin'; } /** * Determine whether the user can delete the model. * * @param \App\Models\User $user * @param \App\Models\Round $round * @return \Illuminate\Auth\Access\Response|bool */ public function delete(User $user, Round $round) { return false; } /** * Determine whether the user can restore the model. * * @param \App\Models\User $user * @param \App\Models\Round $round * @return \Illuminate\Auth\Access\Response|bool */ public function restore(User $user, Round $round) { return false; } /** * Determine whether the user can permanently delete the model. * * @param \App\Models\User $user * @param \App\Models\Round $round * @return \Illuminate\Auth\Access\Response|bool */ public function forceDelete(User $user, Round $round) { return false; } /** * Determine whether the user can set the seed for this round. * * @param \App\Models\User $user * @param \App\Models\Round $round * @return \Illuminate\Auth\Access\Response|bool */ public function setSeed(User $user, Round $round) { return $user->role === 'admin' || ($user->isParticipant($round->tournament) && !$round->locked); } }