@extends('layouts.app') @section('title', 'Homepage Sections') @section('page-title', 'Website Builder') @section('breadcrumb', 'Website / Homepage Sections') @section('content')

Manage dynamic homepage sections for your academy website.

@if($sections->count()) @foreach($sections as $section) @endforeach
Section Heading Order Visible Actions
{{ $section->name }} {{ $section->heading ?? '—' }} {{ $section->sort_order }} {{ $section->is_visible ? 'Show' : 'Hidden' }} Edit
@csrf @method('DELETE')
{{ $sections->links() }}
@else @endif
@endsection