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