Show my friends that also Checkin the same company
up vote
0
down vote
favorite
I want to show my friends who check-in the same company. Here is my code.
public function show(Company $company)
{
$authUser = JWTAuth::parseToken()->toUser();
$userFriendIds = $authUser->friendslist()->pluck('id')->toArray();
$profile = $company->where('id', $company->id)
->with(['subcategory', 'activities' => function ($query) use ($authUser) {
$query->with(['activityLiked', 'comments', 'joins' => function ($query) use ($authUser) {
$query->where('user_id', $authUser->id);
}]);
}, 'comments', 'companyCheckins' => function ($query) use ($userFriendIds) {
$query->whereIn('user_id', $userFriendIds);
}, 'companyFollowers'])->first();
return response()->json(['profile'=> $profile], 200);
}
Please help.
php laravel
add a comment |
up vote
0
down vote
favorite
I want to show my friends who check-in the same company. Here is my code.
public function show(Company $company)
{
$authUser = JWTAuth::parseToken()->toUser();
$userFriendIds = $authUser->friendslist()->pluck('id')->toArray();
$profile = $company->where('id', $company->id)
->with(['subcategory', 'activities' => function ($query) use ($authUser) {
$query->with(['activityLiked', 'comments', 'joins' => function ($query) use ($authUser) {
$query->where('user_id', $authUser->id);
}]);
}, 'comments', 'companyCheckins' => function ($query) use ($userFriendIds) {
$query->whereIn('user_id', $userFriendIds);
}, 'companyFollowers'])->first();
return response()->json(['profile'=> $profile], 200);
}
Please help.
php laravel
What is current output and what is your desired output?
– Mehul Kuriya
Nov 19 at 6:46
my current output is it shows all users but i want show only my friends who checkin the same company
– Sheikh Moaiz
Nov 19 at 6:49
Did you check and print_r() $userFriendsIds array??
– Mehul Kuriya
Nov 19 at 9:04
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I want to show my friends who check-in the same company. Here is my code.
public function show(Company $company)
{
$authUser = JWTAuth::parseToken()->toUser();
$userFriendIds = $authUser->friendslist()->pluck('id')->toArray();
$profile = $company->where('id', $company->id)
->with(['subcategory', 'activities' => function ($query) use ($authUser) {
$query->with(['activityLiked', 'comments', 'joins' => function ($query) use ($authUser) {
$query->where('user_id', $authUser->id);
}]);
}, 'comments', 'companyCheckins' => function ($query) use ($userFriendIds) {
$query->whereIn('user_id', $userFriendIds);
}, 'companyFollowers'])->first();
return response()->json(['profile'=> $profile], 200);
}
Please help.
php laravel
I want to show my friends who check-in the same company. Here is my code.
public function show(Company $company)
{
$authUser = JWTAuth::parseToken()->toUser();
$userFriendIds = $authUser->friendslist()->pluck('id')->toArray();
$profile = $company->where('id', $company->id)
->with(['subcategory', 'activities' => function ($query) use ($authUser) {
$query->with(['activityLiked', 'comments', 'joins' => function ($query) use ($authUser) {
$query->where('user_id', $authUser->id);
}]);
}, 'comments', 'companyCheckins' => function ($query) use ($userFriendIds) {
$query->whereIn('user_id', $userFriendIds);
}, 'companyFollowers'])->first();
return response()->json(['profile'=> $profile], 200);
}
Please help.
php laravel
php laravel
edited Nov 19 at 6:07
Hiren Gohel
3,24921433
3,24921433
asked Nov 19 at 6:05
Sheikh Moaiz
114
114
What is current output and what is your desired output?
– Mehul Kuriya
Nov 19 at 6:46
my current output is it shows all users but i want show only my friends who checkin the same company
– Sheikh Moaiz
Nov 19 at 6:49
Did you check and print_r() $userFriendsIds array??
– Mehul Kuriya
Nov 19 at 9:04
add a comment |
What is current output and what is your desired output?
– Mehul Kuriya
Nov 19 at 6:46
my current output is it shows all users but i want show only my friends who checkin the same company
– Sheikh Moaiz
Nov 19 at 6:49
Did you check and print_r() $userFriendsIds array??
– Mehul Kuriya
Nov 19 at 9:04
What is current output and what is your desired output?
– Mehul Kuriya
Nov 19 at 6:46
What is current output and what is your desired output?
– Mehul Kuriya
Nov 19 at 6:46
my current output is it shows all users but i want show only my friends who checkin the same company
– Sheikh Moaiz
Nov 19 at 6:49
my current output is it shows all users but i want show only my friends who checkin the same company
– Sheikh Moaiz
Nov 19 at 6:49
Did you check and print_r() $userFriendsIds array??
– Mehul Kuriya
Nov 19 at 9:04
Did you check and print_r() $userFriendsIds array??
– Mehul Kuriya
Nov 19 at 9:04
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53369133%2fshow-my-friends-that-also-checkin-the-same-company%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What is current output and what is your desired output?
– Mehul Kuriya
Nov 19 at 6:46
my current output is it shows all users but i want show only my friends who checkin the same company
– Sheikh Moaiz
Nov 19 at 6:49
Did you check and print_r() $userFriendsIds array??
– Mehul Kuriya
Nov 19 at 9:04