Home Categories
{{-- Header --}}

Home Categories

Manage the "Shop By Categories" section on your homepage

Add Home Category
@if(session('success'))
{{ session('success') }}
@endif
@forelse($homeCategories as $hc)
{{ $hc->category->name }} {{-- Overlay Actions --}}
@csrf @method('DELETE')
{{-- Badges --}}
ORDER: {{ $hc->order }} {{ $hc->status ? 'ACTIVE' : 'INACTIVE' }}

{{ $hc->category->name }}

@if($hc->title) Custom Title @endif

DISPLAY: {{ $hc->title ?? $hc->category->name }}

@empty

No home categories selected

Select categories to highlight on your home page

Select First Category
@endforelse