@extends('layouts.admin.app') @section('content')
@if(session('success')) @endif

Gallery Categories

@foreach($categories as $category)
{{ $category->name }}

{{ $category->name }}

{{ $category->description }}

@endforeach
@foreach($categories as $category)

{{ $category->name }}

{{ $category->images->count() }} images

@if($category->images->isEmpty())

No images yet in this category.

Click the "Add Image" button to add your first image.

@else
@foreach($category->images as $image)
{{ $image->caption }}
@if($image->caption)
{{ $image->caption }}
@endif
@endforeach
@endif
@endforeach
@push('scripts') @endpush @endsection