@extends('admin.layouts.main') @php $page_name = 'Home Banners'; @endphp @section('content')

{{ $edit ? 'Edit' : 'Add' }} {{ $page_name }}

@csrf

{{ $page_name }} List

@if (!$edit) @endif
@foreach ($home_banners as $key => $home_banner) @endforeach
# Banner Actions
{{ $key + 1 }}
{{ $home_banners->appends(request()->query())->links('pagination::bootstrap-5') }}
@include('components.alertmodal', [ 'modal_id' => 'deleteBannerModal', 'form_id' => 'deleteBannerForm', 'action' => route('admin.home_banners.destroy'), 'modal_title' => 'Alert!', 'input_id' => 'deleteBannerId', 'modal_mess' => 'Are you sure you want to delete this home_banner?', 'button_type' => 'submit', 'button_id' => 'confirmDeleteBannerButton', ]) @endsection @section('script') @endsection