@extends('backend.admin.layouts.app') @section('content')

Dashboard

Home Sections
@forelse($sections as $section) @empty @endforelse
# Section Title Category Max Products Order Status Action
{{ $loop->iteration }} {{ $section->title ?: '—' }} @if($section->subtitle)
{{ $section->subtitle }}
@endif
{{ optional($section->menu)->name ?: 'N/A' }} {{ $section->max_products }} {{ $section->order }} @if($section->is_active) Active @else Inactive @endif {{-- Manage Products --}} {{-- Edit --}} {{-- Delete --}}
No home sections found. Click "Add Home Section" to create one.
@endsection @push('style') @endpush @push('script') @endpush