@extends('layouts.admin.master') @section('title') FAQS @stop @section('content') @include('layouts.admin.flash.alert') Manage FAQ Here you can manage the FAQS Home FAQ @php $qparams = app('request')->query(); @endphp List FAQ New FAQ {{ Form::open(['url' => route('data.faq', $qparams),'method' => 'get']) }} {{ Form::text('keyword', app('request')->query('keyword'), ['class' => 'form-control','placeholder' => 'Keyword e.g: question, answer']) }} Filter Reset {{ Form::close() }} # Question Actions @if($faqs->count() > 0) @php $i = (($faqs->currentPage() - 1) * ($faqs->perPage()) + 1) @endphp @foreach($faqs as $faq) {{$i}}. {{$faq->heading}} @php $i++; @endphp @endforeach @else Record Not Available @endif @stop