@extends('pdfs._layout')
@section('title', 'Payment Receipt')
@section('document_title', 'Payment Receipt')
@section('document_reference', $booking->reference)
@section('document_meta')
Generated: {{ $exportDate ?? now()->format('M j, Y') }} at {{ $exportTime ?? now()->format('H:i:s') }}
Payment Status: {{ $pricingInfo['paymentStatus'] ?? 'N/A' }}
@if(isset($pricingInfo['confirmedAt']) && $pricingInfo['confirmedAt'])
Payment Confirmed: {{ $pricingInfo['confirmedAt'] }}
@endif
Payment Method: {{ $pricingInfo['paymentMethod'] ?? 'N/A' }}
@endsection
@section('content')
{{-- Booking Summary --}}
@include('pdfs.partials.booking-summary')
{{-- Route Information --}}
@include('pdfs.partials.route-info')
{{-- Pricing Information --}}
@include('pdfs.partials.pricing-table')
{{-- Payment Confirmation --}}
@include('pdfs.partials.payment-summary')
@endsection