@extends('panel.layout.app', ['disable_tblr' => true])
@section('title', __('F.A.Q'))
@section('titlebar_actions')
{{ __('Add New') }}
@endsection
@section('content')
{{ __('Question') }}
|
{{ __('Answer') }}
|
{{ __('Created At') }}
|
{{ __('Actions') }}
|
@foreach ($faq as $entry)
{{ $entry->question }}
|
{!! $entry->answer !!}
|
{{ date('j.n.Y', strtotime($entry->created_at)) }}
{{ date('H:i:s', strtotime($entry->created_at)) }}
|
@if ($app_is_demo)
@else
@endif
|
@endforeach
@endsection
@push('script')
@endpush