is_admin) { return Response::allow(); } if (License::isCommunity()) { return Response::deny('This action is unauthorized.'); } return $artist->songs->every(static fn (Song $song) => $song->ownedBy($user)) ? Response::allow() : Response::deny('Artist is not owned by the user.'); } }