我是 Laravel 的新手。
我与用户和电影有多对多的关系,因此创建了一个 movie_user 数据透视表:
我使用的是 Laravel 6.5.2 默认身份验证;在 App/User.php 中。
默认的 User.php 类如下:
<?php
namespace App;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Laravel\Passport\HasApiTokens;
use Modules\Movie\Entities\Movie;
class User extends Authenticatable
{
use Notifiable, HasApiTokens;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name', 'email', 'password','profile_pic_url',
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
/**
* The attributes that should be cast to native types.
*
* @var array
*/
protected $casts = [
'email_verified_at' => 'datetime',
];
}
我想在用户类中为电影添加以下关系
public function movies()
{
return $this->belongsToMany(Movie::class);
}
但要做到这一点,我认为我需要扩展 Model 类而不是 Authenticatable 类;
所以问题是我如何在'class User extends Authenticatable'中插入关系有没有像依赖注入这样的方法来实现这个解决方案?如果是,那么最好的方法是什么?