@extends('front.template.header') @section('content')
Drop files here or click to upload.
    Billing details

    Legal Translation

    Document Type Letters
    From Language {{ $priceDetails[0]['from'] ?? 'Unknown' }}
    To Language {{ $priceDetails[0]['to'] ?? 'Unknown' }}
    Delivery Options Normal
    Referral Employee Website
    How many words {{ $wordsCount }}
    @php $totalPrice = $totalPrice ?? 0; // Total price from booking $shippingVAT = $totalPrice * 0.05; // 5% VAT on shipping $grandTotal = $totalPrice + $shippingVAT; // Add shipping cost (with VAT) to the total price @endphp
    Subtotal AED {{ $totalPrice }}
    Shipping AED {{ $shippingVAT }} (includes 5% VAT)
    Total AED {{ $grandTotal }}
    @csrf

    Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our privacy policy.

    @endsection