@extends('layouts.admin')
@section('title', 'FAQs')
@section('page_title', 'FAQs')
@section('page_css')
@endsection
@section('content')
@forelse($faqs as $faq)
| {{ $faqs->firstItem() + $loop->index }} |
{{ Str::limit($faq->question, 80) }} |
{{ $faq->category->name ?? '—' }} |
{{ $faq->sort_order }} |
|
|
@empty
| No FAQs found. |
@endforelse
@endsection
@section('page_js')
@endsection