@extends('backend.layouts.app') @section('title') {{ __('faq_category_list') }} @endsection @section('content')

{{ __('faq_category_list') }}

@if (userCan('faq.create'))   {{ __('create') }} @endif
@if (userCan('faq.update') || userCan('faq.delete')) @endif @forelse ($faqCategories as $faqCategory) @if (userCan('faq.update') || userCan('faq.delete')) @endif @empty @endforelse
# {{ __('icon') }} {{ __('name') }}{{ __('action') }}
{{ $loop->iteration }} {{ $faqCategory->name }} @if (userCan('faq.update'))
@endif @if (userCan('faq.delete'))
@method('DELETE') @csrf
@endif
@if (userCan('faq.create')) @else @endif
@endsection @section('script') @endsection