@extends('layouts.front-end.app') @section('title',translate('FAQ')) @section('content')

@php $length=count($helps); @endphp @if(count($helps) > 0) @php if($length%2!=0){$first=($length+1)/2;}else{$first=$length/2;}@endphp
    @for($i=0;$i<$first;$i++)
    {{ $helps[$i]['answer'] }}
    @endfor
    @for($i=$first; $i<$length; $i++)
    {{ $helps[$i]['answer'] }}
    @endfor
@else
{{ translate('brand') }}
{{ translate('there_is_no_FAQs') }}
@endif
@endsection