@extends('layouts.admin')
@section('page_title', $isRtl ? 'الأسئلة الشائعة' : 'FAQs')
@section('content')
| {{ $isRtl ? 'التصنيف' : 'Category' }} |
{{ $isRtl ? 'السؤال' : 'Question' }} |
{{ $isRtl ? 'الترتيب' : 'Order' }} |
{{ $isRtl ? 'الحالة' : 'Status' }} |
|
@forelse($faqs as $faq)
| {{ $faq->category }} |
{{ $faq->question }} |
{{ $faq->order }} |
@if($faq->is_active)
{{ $isRtl ? 'نشط' : 'Active' }}
@else
{{ $isRtl ? 'معطل' : 'Inactive' }}
@endif
|
|
@empty
| {{ $isRtl ? 'لا توجد أسئلة بعد' : 'No FAQs yet' }} |
@endforelse
{{ $faqs->links() }}
@endsection