{{ 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']) }}
{{ Form::close() }}
# |
Title |
Status |
Sort_Order |
Actions |
@if($banners->count() > 0)
@php
$i = (($banners->currentPage() - 1) * ($banners->perPage()) + 1)
@endphp
@foreach($banners as $banner)
{{$i}}. |
{{$banner->title}} |
@if($banner->status===1)
Active
@else
In-Active
@endif
|
{{$banner->sort_order }} |
|
@php
$i++;
@endphp
@endforeach
@else
Record Not Available |
@endif