@extends('layouts.app') @section('page_title', 'Our Gallery') @section('page_subtitle', 'Capturing moments of impact and community action across the globe.') @section('content') @auth Select Multiple + Upload New Media @endauth @auth 0 items selected Select All @csrf @method('DELETE') Delete Selected Cancel @endauth @if(!$groups->isEmpty()) All Photos @foreach($groups as $group) {{ $group->name }} ({{ $group->items_count }}) @endforeach @endif @if(session('success')) {{ session('success') }} @endif @if($items->isEmpty()) 📸 No gallery items yet. Add a photo or video to start showcasing our work. @else @foreach($items as $item) @auth @endauth @if($item->type === 'image') {{ $item->title }} @if($item->description) {{ Str::limit($item->description, 60) }} @endif View Photo @auth @csrf @method('DELETE') Delete @endauth @else ▶ {{ $item->title }} @if($item->description) {{ Str::limit($item->description, 60) }} @endif Play Video @auth @csrf @method('DELETE') Delete @endauth @endif @endforeach @endif @endsection
No gallery items yet. Add a photo or video to start showcasing our work.
{{ Str::limit($item->description, 60) }}