@extends('layouts.admin', ['title' => 'Gallery']) @section('content')
Gallery
Upload images and add captions for workshops and projects.
Add Image
@foreach($items as $item)
@php($src = $item->image_path ? public_path('storage/'.$item->image_path) : null) @if($src && file_exists($src)) {{ $item->title ?: 'Gallery image' }} @else
Missing image
@endif
{{ $item->title ?: 'Untitled' }}
Edit
@if($item->caption)
{{ $item->caption }}
@endif
Order: {{ $item->sort_order }} ยท {{ $item->is_published ? 'Published' : 'Hidden' }}
@endforeach
@endsection