Мое приложение основано на
Laravel: 5.6.35
PHP 7.2.4
Entrust: 1.9
Моя ролевая модель
class Role extends EntrustRole
{
public function permissions()
{
return $this->belongsToMany(Permission::class);
}
public function users()
{
return $this->hasMany(User::class);
}
}
И моя модель пользователя
class User extends Authenticatable
{
public function role()
{
return $this->belongsTo(Role::class);
}
}
А теперь вы можете заметить в Тинкере
D:\work\www\myapp>php artisan tinker
Psy Shell v0.9.7 (PHP 7.2.4 — cli) by Justin Hileman
>>> App\models\Role::find(1)->users()->get()
Illuminate/Database/QueryException with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'users.role_id' in 'where clause' (SQL: select * from `users` where `users`.`role_id` = 1 and `users`.`role_id` is not null)'
>>> App\User::find(1)->role()->get();
=> Illuminate\Database\Eloquent\Collection {#2937
all: [],
}
>>> App\User::find(1)->roles()->get();
=> Illuminate\Database\Eloquent\Collection {#2941
all: [
App\models\Role {#2930
id: 1,
name: "super-admin",
display_name: "Super Admin",
description: "This will be one permission, that can not be assigned or modified.",
created_at: "2018-09-07 12:11:35",
updated_at: "2018-09-07 12:11:35",
pivot: Illuminate\Database\Eloquent\Relations\Pivot {#2927
user_id: 1,
role_id: 1,
},
},
],
}
Я получаю результат для App\User::find(1)->roles()
, но моя модель User имеет функцию role()
, пустую коллекцию для App\User::find(1)->role()
и ошибку для App\models\Role::find(1)->users()
поэтому, пожалуйста, дайте некоторое представление, как решить эту проблему?