@extends('site.inner') @section('title') {!! label('lbl_faq') !!} @endsection @section('breadcrumb') @endsection {{-- @section('page_title') {!! label('lbl_faq') !!} @endsection --}} @section('page_content')

{{ label('lbl_faq') }}

@if(count($faqs))
@foreach($faqs as $key => $faq)
{!! str_limit(strip_tags($faq->answer),300) !!}
@endforeach
{!! $faqs->render() !!}
@else
{{ label('lbl_no_information') }}
@endif
@include('site.includes/sidebar')
@stop