@extends('front.layout') @section('pagename') - {{ __('FAQ') }} @endsection @section('meta-description', !empty($seo) ? $seo->faqs_meta_description : '') @section('meta-keywords', !empty($seo) ? $seo->faqs_meta_keywords : '') @section('breadcrumb-title') {{ __('FAQ') }} @endsection @section('breadcrumb-link') {{ __('FAQ') }} @endsection @section('content')
@if (isset($faqs) && count($faqs) > 0)
@foreach ($faqs->chunk(ceil($faqs->count() / 2))->first() as $key => $faq) @if ($key == 0)

{{ $faq->answer }}

@else

{{ $faq->answer }}

@endif @endforeach
@if (count($faqs) > 1) @foreach ($faqs->chunk(ceil($faqs->count() / 2))->last() as $key => $faq)

{{ $faq->answer }}

@endforeach @endif
@endif
@endsection