@extends('admin.layouts.app') @section('title', 'FAQs') @section('heading', 'Frequently Asked Questions') @section('content')

Manage FAQs displayed on the site. Sorted by order field, then ID.

{{-- Add form --}}

Add FAQ

Add a new question and answer

@csrf
@if($faqs->isEmpty())

No FAQs yet

Add your first FAQ above.

@else
@foreach($faqs as $faq) @endforeach
Question Answer Order Status Actions
{{ $faq->question }} {{ Str::limit($faq->answer, 120) }} {{ $faq->sort_order }} @if($faq->active) Active @else Hidden @endif
@csrf @method('DELETE')
@endif @push('scripts') @endpush @endsection