@extends('layouts.app') @section('content')

Banners

@forelse($banners as $i => $banner) @empty @endforelse
SN# Name Image Created At Updated At Is Active Actions
{{ $i+1 }} {{ $banner->name }} @if($banner->image) Banner @else No image @endif {{ $banner->created_at->format('d M Y h:i A') }} {{ $banner->updated_at->format('d M Y h:i A') }}
is_active ? 'checked' : '' }} type="checkbox" role="switch">
@csrf @method('DELETE')
No banners found.
{{ $banners->links() }}
@push('scripts') @endpush @endsection