Create Series Booking

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

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

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

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

{{-- Adjust weeks via GET so no new route is needed yet --}}

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

Cancel
@csrf {{-- Prefilled from the page --}} @if ($errors->any())
    @foreach ($errors->all() as $err)
  • {{ $err }}
  • @endforeach
@endif

This will create {{ $weeks }} weekly bookings (status: Booked) starting {{ $weekdayName }} {{ $prettyDate }} at {{ $prettyTime }}.

Cancel
Next step (coming up): we’ll add a Confirm series POST action that saves {{ $weeks }} weekly bookings as Booked (no student name) with booked_from_page = 'admin:block-series'. Later we can add a checkbox for “until end of academic year.”