@extends('layouts.admin')
@section('title', 'Gallery Management')
@section('page-title', 'Gallery Management')
@section('content')
Operations / Gallery Management
@forelse($items as $item)
@if($item->type == 'image')

@else
@endif
{{ ucfirst($item->type) }}
{{ $item->title }}
{{ $item->created_at->format('d M Y') }}
@empty
No gallery items found. Click upload to add pictures/videos.
@endforelse
@endsection