*/ protected $fillable = [ 'account_id', 'label', ]; /** * Get the account associated with the call reason type. */ public function account(): BelongsTo { return $this->belongsTo(Account::class); } /** * Get the call reasons associated with the call reason type. */ public function callReasons(): HasMany { return $this->hasMany(CallReason::class); } }