@extends('layouts.admin')
@section('title', 'Banners & Hero Sections')
@section('content')
Banners
Manage your homepage hero slides and promotional banners.
Add New Banner
| Preview |
Title / Position |
Status |
Order |
Actions |
@forelse($banners as $banner)
|
{{ $banner->title ?: 'Untitled Banner' }}
{{ $banner->position }}
|
{{ $banner->is_active ? 'Active' : 'Inactive' }}
|
{{ $banner->sort_order }} |
|
@empty
| No banners found. Create your first one to spice up the homepage! |
@endforelse
@endsection