@extends('panel.layout.app') @section('title', __('F.A.Q')) @section('content')

{{__('F.A.Q')}}

@if($app_is_demo) {{__('Add New')}} @else {{__('Add New')}} @endif
@foreach($faq as $entry) @endforeach
{{__('Question')}} {{__('Answer')}} {{__('Created At')}} {{__('Actions')}}
{{$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
@endsection @section('script') @endsection