{{ __('FAQ Categories') }}
{{ __('Please review the list.') }}
{{ __('Add FAQ Category') }} {{ __('List FAQs') }}
@if ($faq_categories->isEmpty())

{{ __('There is no data to display') }}

@else
@foreach ($faq_categories as $faq_category) @endforeach
{{ __('Category') }} {{ __('Description') }} {{ __('Active') }} {{ __('Actions') }}
@if ($faq_category->image)
@endif
{{ $faq_category->name }}
{{--
{{ $faq_category->title }}
--}} @if ($faq_category->parent)
{{ __('Child of') }}: {{ $faq_category->parent->name }}
@endif
{{ $faq_category->description }} @if ($faq_category->active) {{ __('Active') }} @else {{ __('Inactive') }} @endif @if (auth()->user()->can('update-faqs')) {{ __('Edit') }}, {{ $faq_category->name }} @endif @if (auth()->user()->can('delete-faqs')) @endif
@if ($faq_categories->hasPages())
{{ $faq_categories->links() }}
@endif
@endif
@once @push('scripts') @endpush @endonce