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

Banners

@if($banners->count() > 0) @foreach($banners as $key => $banner) @endforeach @else @endif
SNo Image Name Status Action
{{$banners->firstItem() + $key}} your image {{ $banner->name }} @if($banner->is_active) @php $statusBtn = '' @endphp Active @else @php $statusBtn = '' @endphp Deactive @endif {!! $statusBtn !!} {{-- --}}
{!! $banners->links() !!}
No Data
@endsection