@extends('layouts.main-layout-new') @section('title') {{ $camp_group->name }} - Booking application @endsection @section('footer', true) @section('header', true) @section('header-logo')
@stop @section('footer-logo') {{ $camp_group->getLogo(white: true) }} @stop @section('content')

Events available to book

@foreach($events as $event)

{{ $event->name }}

@foreach($event->eventOptions as $week)
{{ $week->option }} {{ formatDateRange($week->start, $week->end) }}
@endforeach
@if(!$event->is_exclusive_for_students) Book as a Parent
@svg('img/icons/right-arrow', 'text-primary-500 w-2.5 h-5')
@endif Book as a {{ $event->students_book_as_volunteers ? 'Assistant Leader' : 'Student' }}
@svg('img/icons/right-arrow', 'text-primary-500 w-2.5 h-5')
@endforeach
@endsection