@extends('adminlte::page')
@section('title_postfix', ' - Perguntas Frequentes')
@section('content_header')
Perguntas Frequentes
Adicionar
@stop
@section('content')
| ID |
Pergunta |
Resposta |
Data |
|
@foreach($faqs as $faq)
| {{ $faq->id }} |
{{ $faq->question }} |
{{strip_tags( $faq->answer) }} |
{{ $faq->created_at }} |
Editar
Apagar
|
@endforeach
@stop
@section('js')
@endsection