New Booking
New Booking
Back to Bookings
@if($errors->any())
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
@csrf {{-- Client & Schedule --}}
Client & Schedule
@error('scheduled_at')
{{ $message }}
@enderror
{{-- Services --}}
Services *
@foreach($services as $svc) @if($svc->variations->isNotEmpty()) {{-- Service with vehicle-type variations --}} @foreach($svc->variations as $variation) @php $uid = 'svc_' . $svc->id . '_var_' . $variation->id; @endphp @endforeach @else {{-- Service without variations --}} @endif @endforeach
@error('service_ids')
{{ $message }}
@enderror
{{-- Assignment & Priority --}}
Assignment & Priority
@foreach(['low' => 'Low', 'normal' => 'Normal', 'urgent' => 'Urgent'] as $val => $lbl) @endforeach
Cancel
@push('scripts') @endpush