On {{ $booking->status}}!
{{ $booking->booking_id}} ID Request on {{ $booking->status}},
soon will get another update
| Service | @php $service = \App\Models\Service::find($booking->service_id); $serviceName = $service ? $service->title : 'N/A'; @endphp {{ $serviceName }} |
| Document Type | {{ implode(', ', $documentTypes->toArray()) }} |
| From Language | {{ $fromLanguage }} |
| To Language | {{ implode(', ', $toLanguages) }} |
| Delivery Options | Normal |
| Referral Employee | Website |
| How many Words | {{$booking->words_count}} |
| Subtotal | AED {{ number_format($subtotal ?? 0, 2) }} |
| Shipping | AED {{ number_format($shippingVAT ?? 0, 2) }} (includes 5% VAT) |
| Total | AED {{ number_format($grandTotal ?? 0, 2) }} |
|---|