歌曲文件
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -36,6 +36,6 @@ class MusicianUserService extends Service | ... | @@ -36,6 +36,6 @@ class MusicianUserService extends Service |
36 | public function getCompanyByName() | 36 | public function getCompanyByName() |
37 | { | 37 | { |
38 | $ids = AppCompany::query()->whereIn('company_name', $this->request->input('name'))->pluck('company_id')->toArray(); | 38 | $ids = AppCompany::query()->whereIn('company_name', $this->request->input('name'))->pluck('company_id')->toArray(); |
39 | return Response::success(['company_ids'=>$ids]); | 39 | return Response::success($ids); |
40 | } | 40 | } |
41 | } | 41 | } | ... | ... |
-
Please register or sign in to post a comment