@extends("layout.app") @section("content") اسئلة شائعة @foreach($faq_categories as $faq_category) @php $faqs = $faq_category->faqs()->where("is_active",1)->orderBy("order","asc")->get(); @endphp {{$faq_category->title}} @foreach($faqs as $faq) {{$faq->question}} {!! $faq->answer !!} @endforeach @endforeach @endsection @section("scripts") @endsection