@include('Admin.Includes.header') @php use Illuminate\Support\Facades\Auth; $logged_in_user = Auth::user(); @endphp

{{ __('View FAQ') }}

Basic Information

{{ $faq->title }}

{{ $faq->permalink }}

@if($faq->page_url) @endif @if($faq->description)

{{ $faq->description }}

@endif
Questions & Answers {{ count($faq->questions_answers ?? []) }} Q&As
@if($faq->questions && count($faq->questions) > 0) @foreach($faq->questions()->ordered()->get() as $index => $question)
#{{ $question->sort_order }} {{ $question->status == 1 ? 'Active' : 'Inactive' }}
Question {{ $index + 1 }}

{{ $question->question }}

Answer
{!! nl2br(e($question->answer)) !!}
@endforeach @else
No Questions & Answers

This FAQ doesn't have any questions and answers yet.

@endif
Settings
{!! $faq->getStatusBadge() !!}

{{ $faq->sort_order }}

{{ $faq->creator->name ?? 'Unknown' }}

{{ $faq->created_at->format('M d, Y h:i A') }}

@if($faq->updated_at != $faq->created_at)

{{ $faq->updated_at->format('M d, Y h:i A') }}

@endif
Quick Actions
Edit FAQ