No: {{ $quote->id }}
Quote Date: {{ \Carbon\Carbon::today()->format('m/d/y') }}
{{ $quote->name }}
{{ $quote->email }}
ph: {{ preg_replace('/(\d{3})(\d{3})(\d{4})/', '($1) $2-$3', $quote->phone) }}
Arrival Date: {{ \Carbon\Carbon::parse($quote->arrival_date)->format('m/d/Y') }}
Departure Date: {{ $quote->departure_date ? \Carbon\Carbon::parse($quote->departure_date)->format('m/d/Y') : 'N/A' }}
Category | Overview | Date | Customer | Girls | Guys | Budget | Sub Total | Gratuity |
---|---|---|---|---|---|---|---|---|
{{ strtoupper($quote->category->name ?? 'TICKETS') }} | @php $overview = $quote->additional ?? 'N/A'; $truncatedOverview = strlen($overview) > 10 ? substr($overview, 0, 7) . '...' : $overview; @endphp {{ $truncatedOverview }} | {{ \Carbon\Carbon::parse($quote->arrival_date)->format('m/d/Y') }} | {{ $quote->name }} | {{ $quote->girls }} | {{ $quote->guys }} | ${{ number_format($quote->budget, 2) }} | @php $subTotal = $quote->budget * ($quote->guys + $quote->girls); @endphp ${{ number_format($subTotal, 2) }} | @php $gratuity = $subTotal * 0.2; // 20% gratuity @endphp ${{ number_format($gratuity, 2) }} |
{{ $quote->additional }}
PLEASE REMIT TO:
DALLAS VIP
2321 Routh St. Suite C.
Dallas, TX. 75201
PAY THIS AMOUNT
@php $total = $subTotal + $gratuity; @endphp ${{ number_format($total, 2) }}