@if(Session::has('message'))
{{ Session::get('message') }}
@endif
| # |
Name |
Image |
Mobile |
Status |
Action |
@if(count($banner)>0)
@foreach($banner as $key=>$item)
| {{ $key+1 }} |
{{ $item->banner_name }} |
@if($item->banner_images)
@else
@endif
|
@if($item->is_mobile=='0')
No
@endif
@if($item->is_mobile=='1')
Yes
@endif
|
@if($item->status=='0')
Inactive
@endif
@if($item->status=='1')
Active
@endif
|
@include('shared._actions', [
'entity' => 'banner',
'id' => $item->id
])
|
@endforeach
@else
No records found! Click here to add a new record.
|
@endif