@extends('layouts.site')
@section('title', \App\Models\SiteSetting::get('schedule_session_meta_title', 'Schedule a Session - Faith & Future Summit'))
@section('meta_description', \App\Models\SiteSetting::get('schedule_session_meta_description', 'Book an academic session with FFS speakers.'))
@section('breadcrumbs', '[{"name":"Schedule a Session"}]')
@section('content')
@php $tdata = \App\Models\TimeSlot::grid() @endphp
{{-- Hero --}}
Select an available time slot below to request an academic session, mentorship meeting, or speaking engagement. All bookings are subject to confirmation and availability approval by the organizing team. {{ $desc }} No time slots available yet. Check back soon. 👈 Swipe left/right to view full schedule on mobile{{ $title }}
Available Time Slots
@if(empty($tdata['dates']))
@foreach($tdata['timeSlots'] as $ts)
Time Slot
@foreach($tdata['dates'] as $d)
{{ \Carbon\Carbon::parse($d)->format('D, M d') }}
@endforeach
@endforeach
{{ $ts }}
@foreach($tdata['grid'][$ts] as $status)
@if($status === 'available')
Available
@elseif($status === 'booked')
Booked
@else
—
@endif
@endforeach