complete story 11.3 with qa tests

This commit is contained in:
Naser Mansour
2026-01-03 19:27:23 +02:00
parent 06ece9f4b2
commit b1e51e085a
17 changed files with 1062 additions and 38 deletions
+4
View File
@@ -53,6 +53,10 @@ class NewBookingAdminEmail extends Mailable implements ShouldQueue
with: [
'consultation' => $this->consultation,
'client' => $this->consultation->user,
'clientName' => $this->consultation->getClientName(),
'clientEmail' => $this->consultation->getClientEmail(),
'clientPhone' => $this->consultation->getClientPhone(),
'isGuest' => $this->consultation->isGuest(),
'formattedDate' => $this->getFormattedDate($locale),
'formattedTime' => $this->getFormattedTime(),
'reviewUrl' => $this->getReviewUrl(),