@extends('backend.layouts.main') @section('title', 'Flight-booking-update') @section('main-container')
Booking Ref | {{ $query->pnr_no }}
Booking By | {{ ucfirst($query->user->name) .' ( '. $query->user->email .' )'}}
Contact | {{ ucfirst($query->contact_no) .' ( '. $query->email .' )'}}
@method('PATCH') @csrf
Discard
Booking Ref | {{ $query->pnr_no }}
Booking By | {{ ucfirst($query->user->name) .' ( '. $query->user->email .' )'}}
@method('POST') @csrf @foreach ($query->passengers as $pKey=> $passenger)
@endforeach
Discard
@endsection