@extends('front.layout') @section('pagename') - {{__('FAQs')}} @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')
@for ($i=0; $i < ceil(count($faqs)/2); $i++)

{{$faqs[$i]->answer}}

@endfor
@for ($i=ceil(count($faqs)/2); $i < count($faqs); $i++)

{{$faqs[$i]->answer}}

@endfor
@endsection