Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Cong.Zhao
/
musician-api.hikoon.com
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
3917e8c4
...
3917e8c494b28ba29eb45609da5a9a418c790404
authored
2022-09-26 19:43:39 +0800
by
lemon
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
*
1 parent
148fccb6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
app/Services/MusicianUserService.php
app/Services/MusicianUserService.php
View file @
3917e8c
...
...
@@ -24,8 +24,7 @@ class MusicianUserService extends Service
if
(
empty
(
$user_ids
))
return
Response
::
success
();
$user
=
AppCompany
::
query
()
->
whereIn
(
'company_id'
,
$user_ids
)
->
get
([
'company_id'
,
'company_name'
])
->
keyBy
(
'company_id'
);
$user
=
AppCompany
::
query
()
->
whereIn
(
'company_id'
,
$user_ids
)
->
get
([
'company_id'
,
'company_name'
])
->
keyBy
(
'company_id'
);
return
Response
::
success
(
$user
);
}
...
...
Please
register
or
sign in
to post a comment