@extends('admin.layouts.app')
@section('title', 'FAQ Details')
@section('page-title', 'FAQ Details')
@section('content')
{{ $faq->question }}
@if($faq->question_km)
{{ $faq->question_km }}
@endif
{{ $faq->answer }}
@if($faq->answer_km)
{{ $faq->answer_km }}
@endif
@if($faq->status)
Active
@else
Inactive
@endif
{{ $faq->created_at->format('M d, Y H:i') }}
@endsection