@extends('home/layouts/master') @section('title', 'View booking') @section('style') @endsection @section('content') {{-- @dd($booking) --}}
{{ $booking->order_id ?? '' }}
{{ $booking->created_at->format('D, d M Y, h:i A') ?? '' }}
@if($booking->status === 'issued' || $booking->status === 'cancel') @elseif($booking->status === 'expired' || !$booking->payment_limit || now()->greaterThan($booking->payment_limit)) Expired @else Pay before () @endif
{{ $flight->price_with_code ?? '' }}
No flights found.
@endforelse{{ $passenger['title'] ?? 'MR' }}. {{ $passenger['given_name'] ?? '' }} {{ $passenger['surname'] ?? '' }}
{{ $booking->client->full_phone ?? '' }}
{{ $booking->client->email ?? '' }}
No travelers found.
@endforelse