*/ public function getNonEmptyArtistIds(): array { return Song::select('artist_id') ->groupBy('artist_id') ->get() ->pluck('artist_id') ->toArray(); } }