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