@extends('layouts.website') @section('title', 'A Week in a Glance') @section('hero') @endsection @push('styles') @endpush @section('content') {{-- Page heading --}}

A Week in a Glance

@if($sections->isEmpty())

Content will be updated soon. Please check back later.

@else
@foreach($sections as $section) @php $carouselId = 'weekCarousel_' . $section->id; $isEven = $loop->iteration % 2 === 0; @endphp
{{-- Text Content --}}
{{-- {{ $loop->iteration }} --}}
@if($section->title)

{{ $section->title }}

@endif
@if($section->description)
{!! nl2br(e($section->description)) !!}
@endif
{{-- Image Carousel --}} @if($section->images->isNotEmpty())
@endif
@endforeach
@endif @endsection @push('scripts') @endpush