@if(sizeof($data['faqs']) > 0)
{{ $data['p_description'] }}
{!! Form::open(array('route' => 'admin.faqs.index', 'method' => 'GET')) !!}
{!! Form::label('name', 'Question:') !!}
{!! Form::text('name', Request::input('name'),['class'=>'form-control', 'placeholder'=>'Enter question ...', 'onblur' => 'ajax_request();']) !!}
{{ Form::hidden('search', 'true') }}
{!! Form::close() !!}
| ID |
Question |
Answer |
In Home |
Status |
Action |
@foreach($data['faqs'] as $faq)
| {{ $faq->id }} |
{{ $faq->question }} |
{{ $faq->answer }} |
@if($faq->in_home == 'Y') Active @else In-active @endif |
@if($faq->status == 'Y') Active @else In-active @endif |
|
@endforeach
@else
Sorry!, no pages found.
@endif