@extends('layouts.admin.master') @section('title','Banners') @section('content') @include('layouts.admin.flash.alert')

Manage Banner Here you can manage the Banner

@php $qparams = app('request')->query(); @endphp

List Banner Category

{{ Form::open(['url' => route('data.bannerscategory', $qparams),'method' => 'get']) }}
{{ Form::select('status', ['' => 'All',1 => 'Active', 0 => 'Inactive'], app('request')->query('status'), ['class' => 'form-control']) }}
{{ Form::text('keyword', app('request')->query('keyword'), ['class' => 'form-control','placeholder' => 'Keyword e.g: question, answer']) }}
Reset
{{ Form::close() }}
@if($banners->count() > 0) @php $i = (($banners->currentPage() - 1) * ($banners->perPage()) + 1) @endphp @foreach($banners as $banner) @php $i++; @endphp @endforeach @else @endif
# Title Status Sort_Order Actions
{{$i}}. {{$banner->title}} @if($banner->status===1) Active @else In-Active @endif {{$banner->sort_order }}      
Record Not Available
@stop