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

Page Sections

Manage homepage section order and visibility

@if(session('success')) @endif
Manage Homepage Sections
Drag and drop to reorder sections. Use the toggle switches to show/hide sections on the homepage.
@foreach($sections as $section)
{{ $section->section_name }}
Title: {{ $section->title ?? 'Not set' }} | Key: {{ $section->section_key }}
is_visible ? 'checked' : '' }} >
Edit
@endforeach
@push('scripts') @endpush @endsection