whereNot('albums.id', Album::UNKNOWN_ID); } public function accessibleBy(User $user): static { if (License::isCommunity()) { // With the Community license, all albums are accessible by all users. return $this; } return $this->join('songs', static function (JoinClause $join) use ($user): void { $join->on('albums.id', 'songs.album_id') ->where(static function (JoinClause $query) use ($user): void { $query->where('songs.owner_id', $user->id) ->orWhere('songs.is_public', true); }); }); } }