@extends('layouts.admin') @section('page_title', $isRtl ? 'الأسئلة الشائعة' : 'FAQs') @section('content')

{{ $isRtl ? 'قائمة الأسئلة' : 'FAQs List' }}

{{ $isRtl ? 'إضافة سؤال' : 'Add FAQ' }}
@forelse($faqs as $faq) @empty @endforelse
{{ $isRtl ? 'التصنيف' : 'Category' }} {{ $isRtl ? 'السؤال' : 'Question' }} {{ $isRtl ? 'الترتيب' : 'Order' }} {{ $isRtl ? 'الحالة' : 'Status' }}
{{ $faq->category }} {{ $faq->question }} {{ $faq->order }} @if($faq->is_active) {{ $isRtl ? 'نشط' : 'Active' }} @else {{ $isRtl ? 'معطل' : 'Inactive' }} @endif
@csrf @method('DELETE')
{{ $isRtl ? 'لا توجد أسئلة بعد' : 'No FAQs yet' }}
{{ $faqs->links() }}
@endsection