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

Banners

Manage promotional banners

@if(session('success'))
{{ session('success') }}
@endif
@forelse($banners as $banner) @empty @endforelse
Banner Position Order Status Actions
{{ $banner->title }}
{{ $banner->title ?? 'Untitled' }}
@if($banner->link)
{{ $banner->link }}
@endif
{{ ucfirst(str_replace('_', ' ', $banner->position)) }} {{ $banner->sort_order }} {{ $banner->status ? 'Active' : 'Inactive' }}
@php $visitUrl = match($banner->position) { 'hero' => route('home') . '#hero-section', 'main_side' => route('home') . '#header-banners', 'footer' => route('home') . '#footer-banners', 'sidebar' => route('home') . '#sidebar-banners', default => route('home') }; @endphp
@csrf @method('DELETE')

No banners found

{{ $banners->links() }}
@endsection