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

Thank you!

You're request was successfully submitted. You can track the status using this ID {{ $booking->booking_id}}


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