*/ protected $fillable = [ 'permission', 'user', ]; /** * Get the User associated with this model * * @return BelongsTo */ public function user() { return $this->belongsTo(User::class); } }