*/ protected $fillable = [ 'account_id', 'name', 'type', ]; /** * Get the account associated with the emotion. * * @return BelongsTo */ public function account(): BelongsTo { return $this->belongsTo(Account::class); } }