Invoice No: {{ $booking->invoice_no }}
Invoice No: | {{ $booking->invoice_no }} |
Invoice To: |
Name: {{ $booking->user->name }} Email: {{ $booking->user->email }} Phone: {{ $booking->user->phone }} |
Invoice From: |
Name: {{ Auth::guard('admin')->user()->name }} Email: {{ Auth::guard('admin')->user()->email }} |
Tour Information: |
Start Date: {{ $booking->tour->tour_start_date }} End Date: {{ $booking->tour->tour_end_date }} |
Package Information: |
Name: {{ $booking->package->name }} |
Booking Date: | {{ $booking->created_at->format('d M Y') }} |
Payment Method: | {{ $booking->payment_method }} |
Payment Status: | @if($booking->payment_status == 'Completed') Completed @else Pending @endif |
Total Persons: | {{ $booking->total_person }} |
Paid Amount: | ${{ $booking->paid_amount }} |