@extends('layouts.app') @section('header')

Perguntas

@endsection @section('content')

Lista de Perguntas

Nova Pergunta
@if(session('success'))
{{ session('success') }}
@endif
@foreach($perguntas as $pergunta) @endforeach
ID Texto Grupo Tipo Status Ações
{{ $pergunta->idtb_perguntas }} {{ $pergunta->pergunta }} {{ $pergunta->grupo ? $pergunta->grupo->nome : 'N/A' }} {{ $pergunta->tipo ? $pergunta->tipo->nome : 'N/A' }} {{ $pergunta->idtb_ativo ? 'Ativo' : 'Inativo' }}
Editar @if($pergunta->idtb_ativo)
@csrf @method('PUT')
@else
@csrf @method('PUT')
@endif
{{ $perguntas->links() }}
@endsection