|
Notification: New Appointment Booking
You have received a new appointment booking for {{ $data["service_name"] }} at {{ $data["created_at"] }}.
Service Name: {{ $data["service_name"] }}
Service Description: {{ $data["service_description"] }}
Original Price: {{ $data["original_price"] ?? $data["service_price"] }}
Discount Percentage: {{ $data["discount_percentage"] ?? 0 }}%
Discount Amount: {{ $data["discount_amount"] ?? 0 }}
Selling Price: {{ $data["selling_price"] ?? $data["service_price"] }}
Physician Fee: {{ $data["physician_fee"] ?? 0 }}
Subtotal: {{ $data["subtotal"] ?? '—' }}
Stripe Fee: {{ $data["stripe_fee"] ?? '—' }}
Total Amount: {{ $data["total_amount"] ?? '—' }}
First Name: {{ $data["first_name"] }}
Last Name: {{ $data["last_name"] }}
Email: {{ $data["email"] ?? '—' }}
Date of Birth: {{ $data["date"] }}
Phone Number: {{ $data["phone_number"] }}
Address: {{ $data["address"] }}
State: {{ $data["state"] ?? '' }}
City: {{ $data["city"] ?? '' }}
ZIP Code: {{ $data["zip_code"] ?? '' }}
@if($data["additional_info"] != null)
Additional Info: {{ $data["additional_info"] }}
@endif
Regards,
© {{ date('Y') }} {{ env('APP_NAME') }} All Rights reserved.
|