@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()) @if($section->images->count() > 1) @foreach($section->images as $idx => $img) @endforeach @endif @foreach($section->images as $idx => $img) @if($img->caption) {{ $img->caption }} @endif @endforeach @if($section->images->count() > 1) Previous Next @endif @endif @endforeach @endif @endsection @push('scripts') @endpush
Content will be updated soon. Please check back later.
{{ $img->caption }}