@extends('layouts.app') @section('title', 'Edit Ticket Fare') @section('content')

Edit Ticket Fare

Back to List
@php $currentRouteType = old('route_type', $ticketFare->route->route_type->value ?? ''); $currentTicketType = old('ticket_type', $ticketFare->ticket_type->value); $hasInboundBaggage = in_array($currentRouteType, ['oneway_inbound', 'round', 'multi_city']); $hasOutboundBaggage = in_array($currentRouteType, ['oneway_outbound', 'round', 'multi_city']); @endphp @if($errors->any())
@endif
@csrf @method('PUT')

Basic Information

{{--
--}} @php $currentFlightType = old('flight_type', $ticketFare->route->flight_type->value ?? ''); @endphp

Fare Information

Group Ticket Details

Baggage Allowances (KG)

Inbound

Outbound

Cancel
@endsection