Departure: {{ \Carbon\Carbon::parse($trip['departure_date'])->format('d M, Y') }}
Return: {{ \Carbon\Carbon::parse($trip['return_date'])->format('d M, Y') }}
{{-- Bus Type --}}Bus Type: @php $busType = \App\Models\BusType::find($trip['bus_type_id']); @endphp {{ $busType->name ?? 'N/A' }}
{{-- Full Itinerary --}}Itinerary:
@php $segments = \App\Models\PackageSegment::where('package_id', $trip['package_id']) ->orderBy('day_number') ->get(); @endphp @if($segments->count())Itinerary not available.
@endif {{-- Booking Button --}}No packages found for selected criteria.
@endif