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