@extends('layouts.main') @section('content')
@can('create_banners') Create Banner @endcan
{{-- --}}

{{-- --}} {{-- --}} {{-- --}} @canany(['edit_banners', 'delete_banners']) @endcanany @if (isset($banners) && !empty($banners)) @foreach ($banners as $key => $item) {{-- --}} {{-- --}} {{-- --}} @canany(['edit_banners', 'delete_banners']) @endcanany @endforeach @endif
S.noService NameShop NameDescriptionImage StatusActions
{{$key + 1}}{{ucfirst($item->type->name)}}{{$item->shop->name}}{{$item->description}}
active == 1 ? 'checked' : ''}} onchange="change_status('{{$item->id}}', 'banners', '#customSwitchGlow{{$item->id}}', 'active');" id="customSwitchGlow{{$item->id}}">
@can('edit_banners') @endcan @can('delete_banners')
@csrf @method('DELETE')
@endcan
{{--
{{ $banners->links() }}
--}}
@include('banner._edit_modal') @push('scripts') @endpush @endsection