@extends('manager.layouts.app') @section('page_title') {{ $page_title ?? 'View FAQs' }} @endsection @section('content')
{{-- Page Header --}} @can('manager_transaction_faqs-edit') Edit FAQ @endcan
{{-- Data Section --}}
{{ $data->question }} {{ $data->status ? 'Active' : 'Inactive' }} {{ $data->sort_order }} {!! $data->answer !!}
{{-- Footer Description --}} @if(!empty($p_description))
Note: {{ $p_description }}
@endif
@endsection @push('footer-scripts') @if(Session::has('messages')) @endif @endpush