@extends('admin.layouts.master') @section('title', 'Edit Package') @section('content')

Edit Package - {{ $package->title }}

@csrf @method('PUT') {{-- ================= General Info ================= --}}
General Information

{{-- ================= Segments ================= --}}
Trip Segments (Day-wise Plan)
@foreach($package->segments as $i => $segment)
{{-- ================= Stops ================= --}}
Stops
@foreach($segment->stops as $j => $stop)
@endforeach
@endforeach

{{-- ================= Prices ================= --}}
Boarding Point Prices
@foreach($package->prices as $pIndex => $price)
@endforeach

{{-- ================= JS ================= --}} @endsection