@extends('template')
@section('content')
F.A.Q.
@if(routeAcess('admin.faqs.create'))
Nova Faq
@endif
Pergunta |
Resposta |
Ações |
@foreach($faqs as $faq)
{{ $faq->pergunta }} |
{!! $faq->resposta !!} |
@if(routeAcess('admin.faqs.edit'))
@endif
@if(routeAcess('admin.faqs.remove'))
@endif
|
@endforeach
@stop()
@section('js-admin-plan')
@stop()