@php ($headerOption = [ 'title' => 'FAQ Details', 'header_buttons' => [ ' Back', ($permission['edit'] ? ' Edit' : ''), ], ]) @extends('admin.layouts.layout', $headerOption) @section('content')
Question

{{ $data->question }}

Answer
{!! nl2br(e($data->answer)) !!}
Status
{!! $data->status_badge !!}
FAQ Information
  • ID: {{ $data->id }}
  • Status: {!! $data->status_badge !!}
  • Created: {{ $data->created_at->format('M d, Y H:i') }}
  • Last Updated: {{ $data->updated_at->format('M d, Y H:i') }}
  • @if($data->created_at != $data->updated_at)
  • Time Since Update: {{ $data->updated_at->diffForHumans() }}
  • @endif
@if($permission['edit'] || $permission['destroy'])
@if($permission['edit']) Edit @endif @if($permission['destroy']) @endif
@endif
Export Options

Export this FAQ along with other active FAQs to PDF format.

Export All Active FAQs
@endsection @section('page_js') @endsection