@extends('layouts.admin') @section('title', 'Gallery Management') @section('page-title', 'Gallery Management') @section('content')

Operations / Gallery Management

Upload Gallery Item
@forelse($items as $item)
@if($item->type == 'image') {{ $item->title }} @else
@endif
{{ ucfirst($item->type) }}
{{ $item->title }}
{{ $item->created_at->format('d M Y') }}
Edit |
@csrf @method('DELETE')
@empty
No gallery items found. Click upload to add pictures/videos.
@endforelse
@endsection