@extends('layouts.admin') @section('title', 'Homepage Sections Management') @section('content')

Homepage Sections

Add New Section Preview Homepage
Total Sections
{{ $totalSections }}
Active Sections
{{ $activeSections }}
Section Types
{{ $sectionTypes->count() }}
Homepage Sections
Drag to reorder
@foreach($sections as $section)
{{ $section->title_en ?? 'Untitled Section' }} @if($section->title_ar) ({{ $section->title_ar }}) @endif
{{ $section->type_display }}
{{ $section->section_key }}
is_active ? 'checked' : '' }}>
@endforeach
@if($sections->isEmpty())
No sections found

Create your first homepage section to get started.

@endif
@endsection @section('scripts') @endsection