Book a Weekly Series

{{-- Prefilled details from controller (no Carbon in Blade) --}}

When: {{ $weekdayName }} {{ $prettyDate }} at {{ $prettyTime }}

Start date (value to save): {{ $date }}

Slot ID: {{ $slot->id }}

{{-- Adjust weeks via GET (keeps things simple for now) --}}

We’ll repeat this weekday/time for the next N weeks.

Cancel
Next: we’ll add a Confirm series step (and later, a payment step) before creating the bookings.
@csrf {{-- keep selected values --}} @if ($errors->any())
    @foreach ($errors->all() as $err)
  • {{ $err }}
  • @endforeach
@endif

This will create {{ $weeks }} weekly bookings starting {{ $weekdayName }} {{ $prettyDate }} at {{ $prettyTime }}.

Cancel