@extends('admin.layouts.app') @section('title', 'Hero Sliders') @section('heading', 'Hero Sliders') @section('content')

Manage the banner carousel shown at the top of the homepage. Drag rows to reorder.

Add Slide
@if($sliders->isEmpty())

No slides yet

Add your first hero banner slide to display on the homepage carousel.

Add Slide
@else
@foreach($sliders as $s) @endforeach
Preview Title / Subtitle CTA Order Status Actions
{{ $s->title ?: '(No title)' }} @if($s->subtitle)
{{ $s->subtitle }}@endif
@if($s->cta_text) {{ $s->cta_text }} @if($s->cta_url)
{{ $s->cta_url }}@endif @else @endif
{{ $s->sort_order }} @if($s->active) Active @else Hidden @endif
@csrf @method('DELETE')

Drag rows to reorder slides. Changes save automatically.

@endif @endsection