@extends('layouts.site') @section('title', \App\Models\SiteSetting::get('gallery_meta_title', 'Gallery - Faith & Future Summit')) @section('meta_description', \App\Models\SiteSetting::get('gallery_meta_description', 'Browse photos from the Faith & Future Summit.')) @section('breadcrumbs', '[{"name":"Gallery"}]') @section('content') @php $images = collect(File::files(public_path('images/gallery'))) ->filter(fn($f) => in_array($f->getExtension(), ['jpg','jpeg','png','webp'])) ->map(fn($f) => 'images/gallery/' . $f->getFilename()) ->values(); @endphp
Moments Captured

A visual journey through the Faith & Future Summit 2026 — where scholars, leaders, and visionaries gathered for meaningful dialogue and collaboration.

@if($images->isEmpty())
photo_library

Gallery images coming soon.

@else
@foreach($images as $img)
FFS Gallery
zoom_in
@endforeach
@endif
@endsection