@extends('super_admins.layouts.master') @section('title') View FAQ @endsection @section('css') @endsection @section('content') @if ($errors->any()) @endif

FAQ

FAQ Category

{{ $faq->faq_category && $faq->faq_category->name ? $faq->faq_category->name : '--' }}

Question

{{ $faq->name ? $faq->name : '--' }}

Image

@if ($faq->image) {{ $faq->slug }} @else -- @endif

Slug

{{ $faq->slug ? $faq->slug : '--' }}

Status

{{ $faq->is_active ? 'Active' : 'Inactive' }}

Created At

{{ date_format($faq->created_at, 'd-m-Y') }}

Answer

{!! $faq->description !!}

@endsection @section('scripts') @endsection