@extends('layouts.app') @section('title', $app_setting['name'] . ' | ' . __('Banner Management')) @section('content')
@csrf
{{-- start --}}
{{ __('Banner List') }}
@forelse ($banners as $banner) {{-- edit banner modal --}} {{-- edit banner modal --}} @empty @endforelse {{ $banners->links() }}
# {{ __('Thumbnail') }} {{ __('Title') }} {{ __('Status') }} {{ __('Action') }}
{{ $banners->firstItem() + $loop->index }} banner thumbnail {{ $banner->title }} @if (!$banner->is_active)
{{ __('Pending') }}
@else
{{ __('Active') }}
@endif
{{ __('No Banner Found') }}
{{ __('Add New Banner') }}
@csrf
{!! old('description') !!}
{{-- end --}}
@endsection @push('styles') @endpush @push('scripts') @if ($errors->any()) @endif @endpush