@extends('layouts.admin.master') @section('title') FAQS @stop @section('content') @include('layouts.admin.flash.alert')

Manage FAQ Here you can manage the FAQS

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

List 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']) }}
Reset
{{ Form::close() }}
@if($faqs->count() > 0) @php $i = (($faqs->currentPage() - 1) * ($faqs->perPage()) + 1) @endphp @foreach($faqs as $faq) @php $i++; @endphp @endforeach @else @endif
# Question Actions
{{$i}}. {{$faq->heading}}      
Record Not Available
@stop