I have table role_user which has two columns user_id and role_id. user_id is the user id from users table and role_id is the id from roles table.
I want to query role_user and show the role name next to each user. Example
table users
user_id username ...
1 Test user
table roles
role_id role_name
1 Admin
table role_user
user_id role_id
1 1
I want to show on page
Test user - Admin
I have added this in my Users model
public function role()
{
return $this->hasOne('App\Role', 'user_id', 'role_id');
}
and this in the controller
public function users()
{
$userRole = User::find(1)->role;
return View::make('users', [
'userRole' => $userRole
]);
}
Currently I've got this which is obvious why:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'roles.user_id' in 'where clause' (SQL: select * from roles where roles.user_id is null and roles.user_id is not null limit 1)
The question is how to query role_user table from controller or from model and while displaying the users to display role name too.
You have defined your table so one user can have many roles (using a pivot which is your role_user table.
If a user can only have one role you can remove the role_user table and add a column role_id to your users table.
Using your current implementation change role relationship in user model to following.
public function roles()
{
return $this->belongsToMany('App\Role', 'role_user', 'user_id', 'role_id');
}
In your controller
public function users()
{
$users= User::with('roles')->get();
return View::make('users', [
'users' => $users
]);
}
To simply show the names of roles use implode method of returned collection
#foreach ($users as $user)
{{ $user->roles->implode('name', ',') }}
#endforeach
You are using a pivot table to maintain the relationship so you need to
belongsToManyrelation and defining a custom accessor for it, like so:
//User model file
public function roles()
{
return $this->belongsToMany(App\Role::class);
}
public function getRoleAttribute()
{
return $this->roles()->first();
}
Related
I have this model:
User:
id (int)
name (varchar)
Role:
id int
name (varchar)
User_Role
id (int)
id_role (int)
id_user (int)
id_company (int)
What I need using Eloquent (Laravel 7), is to query user_role with the id_company:
This is my relationship into User model
public function rol() {
return $this->belongsToMany('\App\Models\Role','user_role','id_user','id_role');
}
This is my relationship into Role model:
function user() {
return $this->belongsToMany('\App\Models\User','user_role','id_role','id_user');
}
Is it possible to query the pivot table like this:
$user->rol->where(["id_company" => $params["id_company"]])->toArray();
You need to first include the pivot table columns in the relationship:
public function roles() {
return $this->belongsToMany('\App\Models\Role','user_role','id_user','id_role')
->withPivot('id_company');
}
Then you can query on the pivot table column:
$user->roles()->wherePivot('id_company', $params["id_company"])
->get()
->toArray();
I have to SQL tables: users and roles; The user table consists of an id (PRIMARY), email, password and a role_id (INDEX) column. The role table consists of an id (PRIMARY) and a name column. A user can only have a single role (Admin or User).
This is how my laravel Models look like:
// User Model
public function role()
{
return $this->hasOne(Role::class);
}
// Role model
public function user()
{
return $this->belongsTo(User::class);
}
What i want is, when i get the information of a user, i want to get the corresponding role of that user.
When i place this code in the Artisan Tinker:
// Get user with id=2
App\User::find(2)->role;
This seems logical to me "Find the role belonging to the user with id 2"
But it is throwing this error:
Illuminate\Database\QueryException with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'roles.user_id' in 'where clause' (SQL: select * from `roles` where `roles`.`user_id` = 2 and `roles`.`user_id` is not null limit 1)'
How Can i get the role of a User without calling it from the Role model?
Since you have a role_id on users table, you should have belongsTo(Role::class) on User model:
// User Model
public function role()
{
return $this->belongsTo(Role::class);
}
And hasMany(User::class) on role model:
// Role model
public function users()
{
return $this->hasMany(User::class);
}
I believe there should be belongsToMany instead of belongsTo. This should fix the problem. Documentation: https://laravel.com/docs/5.6/eloquent-relationships
Unknown column 'roles.user_id'
This is the error. Your roles table should have user_id column.
I am getting an error with a many to many relationship in eloquent in Laravel 5.5
Illuminate \ Database \ QueryException (42000)
SQLSTATE[42000]: Syntax error or access violation: 1066 Not unique table/alias: 'users' (SQL: select users.*, users.roles_id as pivot_roles_id, users.users_id as pivot_users_id, users.id as pivot_id, users.created as pivot_created, users.updated as pivot_updated, users.deleted as pivot_deleted from users inner join users on users.id = users.users_id where users.roles_id = 2)
I have a users table, roles table and a user_role table (pivot table). The user_role table has the following columns: id, users_id(fk from users table),roles_id (fk from roles table),created,updated,deleted.
In the User model I have
public function roles(){
return $this->belongsToMany(\App\roles::class,'roles','users_id','roles_id','id','id')->withPivot(['id','created','updated','deleted']);
}
In the roles model I have
public function users(){
return $this->belongsToMany(\App\User::class,'users','roles_id','users_id','id','id')->withPivot(['id','created','updated','deleted']);
}
In my controller I have
$roles = $this->rolesObject->whereNull('deleted')->orderBy('role')->get();
//Just for testing how to view the relationship won't be real code in the end
foreach($roles as $role){
foreach($role->users as $user){
dump($user->display_name);
}
}
Looking through the documentation and it looks like i am setting up the relationship correctly but obviously I'm not and I have no idea what I am doing wrong
The second parameter to belongsToMany method is a relation table name(docs), you have to pass role_user rather than users.
public function roles(){
return $this->belongsToMany(\App\roles::class,'role_user','users_id','roles_id','id','id')->withPivot(['id','created','updated','deleted']);
}
...
public function users(){
return $this->belongsToMany(\App\User::class,'role_user','roles_id','users_id','id','id')->withPivot(['id','created','updated','deleted']);
}
Your code thinks that your second parameter users is a relation table name, that's the reason of the error.
I have the following table relationship:
organizations
id - integer
organization_users
organization_id - integer (FK)
user_id - integer (FK)
users
id - integer
I am trying to get all the users of an organization through eloquent relationships. Here is my Organization.php model with its relationships:
class Organization extends Model
{
public function Users(){
return $this->hasManyThrough('App\User', 'App\OrganizationUser',
'organization_id', 'user_id', 'id');
...
}
I have tried many combinations of that relationship such as
return $this->hasManyThrough('App\User', 'App\OrganizationUser',
'user_id', 'organization_id', 'id');
But all turn up somewhat the same error (this one is from the first query):
Illuminate\Database\QueryException with message 'SQLSTATE[42S22]: Column not
found: 1054 Unknown column 'organization_users.id' in 'on clause' (SQL: select
`users`.*, `organization_users`.`organization_id` from `users` inner join
`organization_users` on `organization_users`.`id` = `users`.`user_id` where
`organization_users`.`organization_id` = 1)'
Is it possible that I can have the relationship retrieve the user_id to query on the users table instead of Laravel trying to retrieve organization_users.id? If not is there another way around this?
This is many to many relationship.
User Model:
public function organizations()
{
return $this->belongsToMany('App\Organization','organization_users');
}
Organization Model:
public function users()
{
return $this->belongsToMany('App\User','organization_users');
}
To, get all the users with their organizations:
$users=User::with('organizations')->get();
foreach($users as $user)
{
print_r($user->name);
foreach($user->organizations as $organization)
{
print_r($organization->name);
}
}
What you are describing looks like it may be a 'Many-to-Many' relationship.
https://laravel.com/docs/5.3/eloquent-relationships#many-to-many
I got a many to many user and role structure
users
id
name
roles
id
name
role_user
user_id
role_id
Model
User.php
public function roles() {
return $this->belongsToMany('Role');
}
Role.php
public function users() {
return $this->belongsToMany('User');
}
There are two data admins and members in roles table, I would like to know to to filter users which role is admins.
This should give you all users who are admins.
$users = User::whereHas('roles', function($q) {
$q->where('name', '=', 'admins');
})->get();
You can see more information on the has() method at http://laravel.com/docs/eloquent#querying-relations