@extends('layouts.admin') @section('content')

Patient information

Frequently Asked Questions

Manage the questions shown in the Frequently asked questions section of the public Patient Information page. Only Published FAQs are visible to visitors.

View Patient Information ↗
Total{{ $faqs->count() }}
Published{{ $faqs->where('status','published')->count() }}
Draft / archived{{ $faqs->where('status','!=','published')->count() }}

Add an FAQ

Use clear patient-facing language and only enter verified store requirements or policies. Categories group related questions; display order controls their sequence within that category.

@csrf

Existing FAQs

Grouped by category, then ordered by the Display order number.

@forelse($faqs->groupBy(fn ($faq) => $faq->category ?: 'Uncategorized') as $category => $categoryFaqs)

{{ $category }}

{{ $categoryFaqs->count() }}
@foreach($categoryFaqs as $faq)
{{ $faq->question }}Display order {{ $faq->sort_order }} · Updated {{ $faq->updated_at->diffForHumans() }}
{{ $faq->status }}Edit ▾
@csrf @method('PUT')
@endforeach
@empty

No FAQs yet. Add the first patient-facing question above.

@endforelse
@endsection