@extends('layouts.layout') @section('title', 'Banner') @section('content')

Banner List

@if(Session::has('message')) @endif @if(count($banner)>0) @foreach($banner as $key=>$item) @endforeach @else @endif
# Name Image Mobile Status Action
{{ $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 ])

No records found!

Click here to add a new record.
@endsection