Basic Information
{{ $faq->title }}
{{ $faq->permalink }}
{{ $faq->description }}
Questions & Answers {{ count($faq->questions_answers ?? []) }} Q&As
@if($faq->questions && count($faq->questions) > 0)
@foreach($faq->questions()->ordered()->get() as $index => $question)
@endforeach
@else
@endif
#{{ $question->sort_order }}
{{ $question->status == 1 ? 'Active' : 'Inactive' }}
Question {{ $index + 1 }}
{{ $question->question }}
Answer
{!! nl2br(e($question->answer)) !!}
No Questions & Answers
This FAQ doesn't have any questions and answers yet.
Settings
{!! $faq->getStatusBadge() !!}
{{ $faq->sort_order }}
{{ $faq->creator->name ?? 'Unknown' }}
{{ $faq->created_at->format('M d, Y h:i A') }}
{{ $faq->updated_at->format('M d, Y h:i A') }}