@extends('layouts.app') @section('title', 'Fare Passenger Details') @section('content')

Fare Passenger Details

View passenger fare information

{{ $passenger_name ?? 'Mohammed Hassan' }}

Passport: {{ $passport_number ?? 'B98765432' }}

Passenger Information

Passenger Type {{ $pax_type ?? 'Adult' }}
Date of Birth {{ $date_of_birth ?? '1985-08-20' }}
Nationality {{ $nationality ?? 'Bangladeshi' }}
Mobile {{ $mobile ?? '+8801712345678' }}

Fare Details

Airline {{ $airline ?? 'Egypt Air' }}
Route {{ $route ?? 'DAC-CAI-JED' }}
Base Fare Rs. {{ number_format($base_fare ?? 45000) }}
Tax Rs. {{ number_format($tax ?? 8500) }}

Fare Breakdown

Description Amount
Base Fare Rs. {{ number_format($base_fare ?? 45000) }}
Airline Tax Rs. {{ number_format($airline_tax ?? 5000) }}
Visa Fee Rs. {{ number_format($visa_fee ?? 3500) }}
Total Rs. {{ number_format($total_fare ?? 53500) }}
Back to Fares
@endsection