@extends('layouts.app') @section('title', 'Consulta de Perguntas') @section('content') @section('page-function', 'Consulta de Perguntas')
@include('template.alert')

Consultar Perguntas

@foreach ($perguntas as $pergunta) @php $ativo = ""; if ($pergunta->ativo == 1) { $ativo = ""; } @endphp @endforeach
ID NOME ATIVO OPÇÕES
{{ $pergunta->id }} {{ $pergunta->pergunta }}
@endsection