How to make a relation in laravel with multiple pivot tables?
up vote
0
down vote
favorite
I got a tables:
- users (id, name, surname)
- weddings (id, ...)
- wedding_user (id, wedding_id, user_id, role_id)
- wedding_user_permission (wedding_user_id, permission_id)
And I want to make a relation between Wedding and WeddingUser model (Wedding has many WeddingUser, WeddingUser belongs to Wedding).
Actually, if I'll ignore laravel relations, model will be:
//Wedding Model
public function users()
$users = WeddingUser::where('wedding_id', $this->id)->get();
return $users;
But I need to do this with the laravel relations.
I tried this:
public function users()
return $this->belongsToMany(
'AppModelsWeddingUser',
'wedding_user',
'user_id'
);
But it throws an error:
SQLSTATE[42000]: Syntax error or access violation: 1066 Not unique table/alias: 'wedding_user' (SQL: select `wedding_user`.*, `wedding_user`.`user_id` as `pivot_user_id`, `wedding_user`.`wedding_user_id` as `pivot_wedding_user_id` from `wedding_user` inner join `wedding_user` on `wedding_user`.`id` = `wedding_user`.`wedding_user_id` where `wedding_user`.`user_id` in (1))
How to do it correctly?
php laravel
add a comment |
up vote
0
down vote
favorite
I got a tables:
- users (id, name, surname)
- weddings (id, ...)
- wedding_user (id, wedding_id, user_id, role_id)
- wedding_user_permission (wedding_user_id, permission_id)
And I want to make a relation between Wedding and WeddingUser model (Wedding has many WeddingUser, WeddingUser belongs to Wedding).
Actually, if I'll ignore laravel relations, model will be:
//Wedding Model
public function users()
$users = WeddingUser::where('wedding_id', $this->id)->get();
return $users;
But I need to do this with the laravel relations.
I tried this:
public function users()
return $this->belongsToMany(
'AppModelsWeddingUser',
'wedding_user',
'user_id'
);
But it throws an error:
SQLSTATE[42000]: Syntax error or access violation: 1066 Not unique table/alias: 'wedding_user' (SQL: select `wedding_user`.*, `wedding_user`.`user_id` as `pivot_user_id`, `wedding_user`.`wedding_user_id` as `pivot_wedding_user_id` from `wedding_user` inner join `wedding_user` on `wedding_user`.`id` = `wedding_user`.`wedding_user_id` where `wedding_user`.`user_id` in (1))
How to do it correctly?
php laravel
What you're looking for is the HasManyThrough relationship.
– Stephen Lake
Nov 11 at 14:33
@snh, not sure. Can you show any example in this case?
– Alexxosipov
Nov 11 at 14:46
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I got a tables:
- users (id, name, surname)
- weddings (id, ...)
- wedding_user (id, wedding_id, user_id, role_id)
- wedding_user_permission (wedding_user_id, permission_id)
And I want to make a relation between Wedding and WeddingUser model (Wedding has many WeddingUser, WeddingUser belongs to Wedding).
Actually, if I'll ignore laravel relations, model will be:
//Wedding Model
public function users()
$users = WeddingUser::where('wedding_id', $this->id)->get();
return $users;
But I need to do this with the laravel relations.
I tried this:
public function users()
return $this->belongsToMany(
'AppModelsWeddingUser',
'wedding_user',
'user_id'
);
But it throws an error:
SQLSTATE[42000]: Syntax error or access violation: 1066 Not unique table/alias: 'wedding_user' (SQL: select `wedding_user`.*, `wedding_user`.`user_id` as `pivot_user_id`, `wedding_user`.`wedding_user_id` as `pivot_wedding_user_id` from `wedding_user` inner join `wedding_user` on `wedding_user`.`id` = `wedding_user`.`wedding_user_id` where `wedding_user`.`user_id` in (1))
How to do it correctly?
php laravel
I got a tables:
- users (id, name, surname)
- weddings (id, ...)
- wedding_user (id, wedding_id, user_id, role_id)
- wedding_user_permission (wedding_user_id, permission_id)
And I want to make a relation between Wedding and WeddingUser model (Wedding has many WeddingUser, WeddingUser belongs to Wedding).
Actually, if I'll ignore laravel relations, model will be:
//Wedding Model
public function users()
$users = WeddingUser::where('wedding_id', $this->id)->get();
return $users;
But I need to do this with the laravel relations.
I tried this:
public function users()
return $this->belongsToMany(
'AppModelsWeddingUser',
'wedding_user',
'user_id'
);
But it throws an error:
SQLSTATE[42000]: Syntax error or access violation: 1066 Not unique table/alias: 'wedding_user' (SQL: select `wedding_user`.*, `wedding_user`.`user_id` as `pivot_user_id`, `wedding_user`.`wedding_user_id` as `pivot_wedding_user_id` from `wedding_user` inner join `wedding_user` on `wedding_user`.`id` = `wedding_user`.`wedding_user_id` where `wedding_user`.`user_id` in (1))
How to do it correctly?
php laravel
php laravel
asked Nov 11 at 14:20
Alexxosipov
229113
229113
What you're looking for is the HasManyThrough relationship.
– Stephen Lake
Nov 11 at 14:33
@snh, not sure. Can you show any example in this case?
– Alexxosipov
Nov 11 at 14:46
add a comment |
What you're looking for is the HasManyThrough relationship.
– Stephen Lake
Nov 11 at 14:33
@snh, not sure. Can you show any example in this case?
– Alexxosipov
Nov 11 at 14:46
What you're looking for is the HasManyThrough relationship.
– Stephen Lake
Nov 11 at 14:33
What you're looking for is the HasManyThrough relationship.
– Stephen Lake
Nov 11 at 14:33
@snh, not sure. Can you show any example in this case?
– Alexxosipov
Nov 11 at 14:46
@snh, not sure. Can you show any example in this case?
– Alexxosipov
Nov 11 at 14:46
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%2f53249639%2fhow-to-make-a-relation-in-laravel-with-multiple-pivot-tables%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 you're looking for is the HasManyThrough relationship.
– Stephen Lake
Nov 11 at 14:33
@snh, not sure. Can you show any example in this case?
– Alexxosipov
Nov 11 at 14:46