@extends('admin.layouts.app') @section('title', 'Gallery - Settings') @section('content')
Hotel Gallery
@if(session('success'))
{{ session('success') }}
@endif
@forelse($images as $image)
{{ $image->title }}
{{ $image->title ?? 'No caption' }}
{{ ucfirst($image->category) }}
@empty

No gallery images found. Upload your first image!

@endforelse
@endsection