@include('include.css') @include('include.header') @section('DPB') active open @endsection @include('include.sidebar')
Insert New Banner


Image Data
@php $i = $bannerData->currentPage() * $bannerData->perPage(); $j = $i - 9; @endphp @foreach ($bannerData as $imageData) @php $process = 'show'; $btn = 'danger'; $startDate = 'Not Found'; $endDate = 'Not Found'; $alert = 'black'; $logo = ''; if ($imageData->status == 1) { $btn = 'success'; $process = 'hide'; } foreach ($banners as $detail) { if ($detail->franchisor_id == $imageData->franchisor_id) { $logo = $detail->company_logo; } } foreach ($startEndDate as $dateData) { if ($dateData->franchisor_id == $imageData->franchisor_id) { $startDate = $dateData->start_date; $endDate = $dateData->end_date; $alert = 'black'; if (strtotime($endDate) < strtotime(date('Y-m-d H:i:s'))) { $alert = 'red'; } } } @endphp @php $j = ++$j; @endphp @endforeach
S.No. Franchisor-ID Image Tenure Status Delete Image
{{ $j }} {{ $imageData->franchisor_id }} Start Date: {{ $startDate }}
End Date: {{ $endDate }}
{{ $bannerData->links('pagination::bootstrap-4') }}
@include('include.footer')