'date', 'consultation_type' => ConsultationType::class, 'payment_status' => PaymentStatus::class, 'status' => ConsultationStatus::class, 'payment_amount' => 'decimal:2', ]; } /** * Get the user that owns the consultation. */ public function user(): BelongsTo { return $this->belongsTo(User::class); } }