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

Hero Slider

Add New Slide
@if (session('success'))
{{ session('success') }}
@endif @if ($heroes->count() > 0)
@foreach ($heroes as $hero) @endforeach
Order Image Title CTA Status Actions
{{ $hero->order }} @if ($hero->background_image) Hero @else
No Image
@endif
{{ $hero->title }}
@if ($hero->subtitle)
{{ Str::limit($hero->subtitle, 50) }}
@endif
{{ $hero->cta_text ?? '-' }} @if ($hero->is_active) Active @else Inactive @endif Edit
@csrf @method('DELETE')
@else

No hero slides yet. Create your first slide!

Add New Slide
@endif
@endsection