@extends("general_base") @section("title", "FAQ") @section("style") @endsection @section("content") frequently asked questions Find answers to common questions about our services. @php $halfCount = ceil($faqs->count() / 2); $firstHalf = $faqs->take($halfCount); $secondHalf = $faqs->skip($halfCount); @endphp @foreach($firstHalf as $faq) {{ $faq->question }} {!! $faq->answer !!} @endforeach @foreach($secondHalf as $faq) {{ $faq->question }} {!! $faq->answer !!} @endforeach @endsection @section("script") @endsection
Find answers to common questions about our services.