@extends('layouts.front-end.app') @section('title',\App\CPU\translate('FAQ')) @push('css_or_js') @endpush @section('content')

    @php $length=count($helps); @endphp @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
@endsection