Я не совсем уверен, как озаглавить этот, но я пытался следовать документам на Laravel об отношениях, и я не уверен, как сделать это в модели.У меня есть модель пользователей:
<?php
namespace App;
use Laravel\Passport\HasApiTokens;
use Illuminate\Notifications\Notifiable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use HasApiTokens, Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'email', 'first_name', 'last_name', 'password',
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token', 'is_admin'
];
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
protected $dates = [
'created_at',
'updated_at',
'email_verified_at'
];
public function companies()
{
return $this->hasManyThrough('App\Company', 'App\CompanyUser');
}
}
Затем у меня есть модель компании, которая выглядит следующим образом:
<?php
namespace App;
use App\Traits\UserRelationsTrait;
use Illuminate\Database\Eloquent\Model;
class Company extends Model
{
use UserRelationsTrait;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name',
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
];
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
protected $dates = [
'created_at',
'updated_at'
];
public function users()
{
return $this->hasManyThrough('App\User', 'App\CompanyUser');
}
}
Далее у меня есть промежуточная таблица CompanyUsers
<?php
namespace App;
use App\Traits\UserRelationsTrait;
use Illuminate\Database\Eloquent\Model;
class CompanyUser extends Model
{
use UserRelationsTrait;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'company_id', 'role_id', 'user_id'
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
];
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
protected $dates = [
'created_at',
'updated_at'
];
}
В моих моделях я могу сделать так, чтобы у пользователя было много компаний через модель CompanyUser, но как мне сделать так, чтобы отношения между пользователем имели одну роль в компании через таблицу CompanyUser?Поэтому, когда я хочу получить роль пользователя в компании, я могу использовать модель отношения.Это та часть отношений, которую я не понимаю.Нужно ли использовать методы morphTo или я могу указать определенную компанию?