belongsToTeam($team); } /** * Determine whether the user can create models. */ public function create(User $user): bool { return true; } /** * Determine whether the user can update the model. */ public function update(User $user, Team $team): bool { return $user->ownsTeam($team); } /** * Determine whether the user can add team members. */ public function addTeamMember(User $user, Team $team): bool { return $user->ownsTeam($team); } /** * Determine whether the user can update team member permissions. */ public function updateTeamMember(User $user, Team $team): bool { return $user->ownsTeam($team); } /** * Determine whether the user can remove team members. */ public function removeTeamMember(User $user, Team $team): bool { return $user->ownsTeam($team); } /** * Determine whether the user can delete the model. */ public function delete(User $user, Team $team): bool { return $user->ownsTeam($team); } }