@extends('layouts.app') @section('title', 'Fare Passenger Details') @section('content')
View passenger fare information
Passport: {{ $passport_number ?? 'B98765432' }}
| 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) }} |