Commit df092b54 df092b54e62fa5beb69f3604ffa51036626ee2cb by lemon

*

1 parent 43b77201
......@@ -32,7 +32,7 @@ class MusicianSongService extends Service
$res = Song::query()->join($songip_table, "{$song_table}.id", '=', "{$songip_table}.song_id")
->with(['contractDetail', 'coverResource'])->whereIn("{$songip_table}.song_id", $song_ids)->select(["{$song_table}.id", 'publish_song'])
->groupBy(["song_id"])->get();
->groupBy(["song_id"])->paginate($this->pageSize);
foreach ($res as &$item) {
......