@extends('admin.layout.app') @section('content')
@forelse ($banners as $key => $banner) @empty @endforelse
# Image Status Action
{{ $key + 1 }} @if($banner->image) Banner Image @else No image @endif @if ($banner->status == 'active') Active @else Inactive @endif
@csrf @method('DELETE')
No banner entries found.
@if(method_exists($banners, 'links'))
{{ $banners->links('pagination::bootstrap-4') }}
@endif
@endsection