@extends('admin.layouts.master') @section('title', ucwords(str_replace('-', ' ', $slug)) . ' | FAQs') @section('content') @include('admin.page.top-nav')
@include('admin.page.side-nav')
{{-- content --}}

{{ __('FAQs') }}

@foreach ($faqs as $id => $faq) @endforeach
{{ __('#') }} {{ __('Question') }} {{ __('Actions') }}
{{ $id + 1 }} {{ $faq->getTranslation('question', 'en') }}
@csrf @method('DELETE')
@endsection