@extends('front.template.header') @section('content')

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}}
@php $totalPrice = $booking->total_price ?? 0; // Total price from booking $shippingVAT = $booking->vat_amount ?? 0; $subtotal = $totalPrice - $shippingVAT; $grandTotal = $totalPrice; // Add shipping cost (with VAT) to the total price @endphp
Subtotal AED {{ number_format($subtotal ?? 0, 2) }}
Shipping AED {{ number_format($shippingVAT ?? 0, 2) }} (includes 5% VAT)
Total AED {{ number_format($grandTotal ?? 0, 2) }}
@endsection