@extends('layouts.app') @section('title', 'Consulta de Perguntas') @section('content') @section('page-function', 'Consulta de Perguntas') @include('template.alert') Consultar Perguntas ID NOME ATIVO OPÇÕES @foreach ($perguntas as $pergunta) @php $ativo = ""; if ($pergunta->ativo == 1) { $ativo = ""; } @endphp {{ $pergunta->id }} {{ $pergunta->pergunta }} @endforeach @endsection