@extends('layouts.admin') @section('title', 'Banner Management - Orange Groceries Admin') @section('header_title', 'Website Banner Management') @section('content')
@if(session('success'))
{{ session('success') }}
@endif

Add New Banner

@csrf

* Note: If both file upload and URL are provided, the uploaded image file will take priority.

Active Banners

@foreach($banners as $banner) @endforeach
Banner Image Title Type Status Actions
{{ $banner->title }}
@if($banner->link)
{{ $banner->link }}
@endif
{{ str_replace('_', ' ', $banner->banner_type) }} {{ $banner->status ? 'Active' : 'Disabled' }}
@csrf
{{ $banners->links() }}

Edit Banner

@csrf
@endsection