@extends('layout.layout') @section('title', 'Galeri') @include('components.navbar') @section('body') {{-- Header Section --}}
{{-- Decorative Background Elements --}}
{{-- Badge --}}
Moments & Memories
{{-- Main Title --}}

Galeri HIMASI

{{-- Description --}}

Dokumentasi perjalanan dan momen berharga dalam setiap kegiatan Himpunan Mahasiswa Sistem Informasi

{{-- Scroll Indicator --}}
{{-- Gallery Section --}}
{{-- Stats or Info Bar (Optional) --}}
{{ $galleries->count() }} Foto Tersimpan
@if ($galleries->count() > 0) {{-- Masonry Gallery Grid - Bento Style --}}
@foreach ($galleries as $item)
{{-- Image --}} {{ $item->desc ?? 'Gallery Image' }} {{-- Hover Overlay dengan Info --}}
{{-- Icon --}}
{{-- Description --}} @if ($item->desc)

{{ $item->desc }}

@endif {{-- Date --}}

{{ $item->created_at->format('d M Y') }}

{{-- Quick View Button (Optional) --}}
@endforeach
@else {{-- Empty State --}}

Belum Ada Galeri

Galeri dokumentasi kegiatan HIMASI akan segera hadir di sini.

@endif
{{-- Image Modal for Full View --}} {{-- Back to Top Button --}} @include('components.footer') {{-- JavaScript for Modal and Back to Top --}} @endsection