@extends('admin.layouts.app') @section('title', 'Gallery') @section('breadcrumb') @endsection @section('content')
{{ $items->total() }} Images
{{-- Grid view --}}
@forelse($items as $item)
{{ $item->title }}
{{ $item->title }}
@if($item->category) {{ $item->category }} @endif
@empty
No gallery images yet. Add your first image
@endforelse
@if($items->hasPages()) @endif
@endsection @push('scripts') @endpush