@extends('layouts.main') @section('title', $title) @section('content')
{{ $title }}
@csrf @if (!($isFormCreate ?? false)) @method('PUT') @endif
@php $eventOptions = collect($events)->mapWithKeys(fn($e) => [$e->id => $e->title])->toArray(); @endphp
@php $packageOptions = collect($packages)->mapWithKeys(fn($p) => [$p->id => ($p->name.' ('.$p->currency.' '.($p->price ?? '0').')')])->toArray(); @endphp
@endsection @push('scripts') @endpush