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

Package Details

View package information

{{ $package->package_name }}

Package ID: {{ $package->id }}

Package Information

Ticket Fare {{ $package->ticketFare->ticket_type->value ?? 'N/A' }}
Ticket Net Fare Rs. {{ number_format($package->ticketFare->net_fare ?? 0, 2) }}
Ticket Selling Fare Rs. {{ number_format($package->ticketFare->selling_fare ?? 0, 2) }}

Visa Information

Visa Type {{ $package->visaSellingPrice?->selling_price ? 'BDT ' . number_format($package->visaSellingPrice->selling_price, 0) : 'N/A' }}
Visa Cost Rs. {{ number_format($package->visaSellingPrice->cost ?? 0, 2) }}
Visa Selling Rs. {{ number_format($package->visaSellingPrice->selling_price ?? 0, 2) }}

Pricing

Regular Price Rs. {{ number_format($package->regular_price, 2) }}
Offer Price @if($package->offer_price) Rs. {{ number_format($package->offer_price, 2) }} @else - @endif
Back to List
@if($package->isLocked()) Edit Delete @else Edit
@csrf @method('DELETE')
@endif
@endsection