@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 --}}
Engage With Us

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.

{{-- How to Book --}}
@foreach([['event_available','Select Slot','Pick an available (green) time'],['edit_note','Fill Form','Your details & session type'],['send','Submit','Request is sent'],['hourglass_top','Review','Team checks availability'],['check_circle','Confirmed','Receive confirmation']] as [$icon,$title,$desc])
{{ $icon }}

{{ $title }}

{{ $desc }}

@endforeach
{{-- Time Slot Grid --}}

Available Time Slots

@if(empty($tdata['dates']))
event_busy

No time slots available yet. Check back soon.

@else
@foreach($tdata['dates'] as $d) @endforeach @foreach($tdata['timeSlots'] as $ts) @foreach($tdata['grid'][$ts] as $status) @if($status === 'available') @elseif($status === 'booked') @else @endif @endforeach @endforeach
Time Slot{{ \Carbon\Carbon::parse($d)->format('D, M d') }}
{{ $ts }}AvailableBooked

👈 Swipe left/right to view full schedule on mobile

@endif
{{-- Booking Modal --}} @endsection