@extends('layouts.admin') @section('title', 'Gallery') @section('breadcrumb') @endsection @section('content')

Gallery Images

@forelse($images as $image) @empty @endforelse
Image Title Category Status Actions
{{ $image->title }} {{ $image->title ?? '-' }} {{ $image->category ?? '-' }} {{ $image->is_active ? 'Active' : 'Inactive' }} Edit
@csrf @method('DELETE')
No images found.
@endsection