@extends('admin.layouts.app') @section('title') FAQ @endsection @section('css') @endsection @section('contents')
New FAQ
@if(Session::has('message'))
{{ Session::get('message') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
{{-- --}} @if(isset($faqs)) @php $i = 1; @endphp @foreach($faqs as $faq) {{-- --}} @endforeach @endif
S/N NameContentCreated at Updated at Action
{{ $i++ }} {{ $faq->title }}{{ $faq->content }}{{ $faq->created_at->diffForHumans() }} {{ $faq->updated_at->diffForHumans() }}
@endsection @section('js') @endsection