@extends('layouts.user.app')
Legacy Eatery & Space Dashboard
@section('content')
Gallery
@forelse($carouselImages->where('is_active', true) as $image)
@empty
@endforelse
Previous
Next
Gallery Cafe
@foreach($galleryCategories->chunk(4) as $categoryChunk)
@foreach($categoryChunk as $category)
View Gallery
{{ $category->name }}
{{ $category->description }}
{{ $category->images->count() }} photos
@foreach($category->images as $image)
@endforeach
@endforeach
@endforeach
@foreach($galleryCategories->chunk(4) as $index => $chunk)
@endforeach
Best Seller
@foreach($bestsellers as $bestseller)
{{ $bestseller->name }}
{{ $bestseller->description }}
@endforeach
Previous
Next
@push('styles')
@endpush @push('scripts') @endpush @endsection