@extends('backend.superadmin.index') @section('body')

Banner List

@if(session('success'))
@endif @if(session('error'))
@endif @if($errors->any())
@endif
Type
Status
@foreach($banners as $key=>$banner) @endforeach
SN Image Company Name Company Address Status Action
{{++$key}} {{$banner->company_name}} {{$banner->company_address}} @if($banner->status=='approved') Approved @elseif($banner->status=='pending') Pending @else Rejected @endif
@endsection