{{ __('There is no data to display') }}
@else| {{ __('Category') }} | {{ __('Description') }} | {{ __('Active') }} | {{ __('Actions') }} |
|---|---|---|---|
|
@if ($faq_category->image)
{{ $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 |