@extends('layouts.admin') @push('js') @endpush @section('content')

Anamnese - {{ $agendavel->nome }}

@csrf @alerts @endalerts @foreach ($perguntas as $pergunta) @php $respostaPergunta = $respostas->where('pergunta_anamnese_id', $pergunta->id)->first(); @endphp @endforeach
Pergunta Sim/Não Qual?
{{ $pergunta->descricao }}

@button([ 'icon' => 'save', 'label' => 'Salvar', 'class' => 'btn-primary' ]) @endbutton @if (isset($agendamento)) @button([ 'route' => 'admin.atendimentos-odontologicos.create', 'routeParams' => ['agendamento' => $agendamento], 'icon' => 'clipboard', 'label' => 'Fazer Atendimento', 'class' => 'btn-secondary' ]) @endbutton @endif @button([ 'route' => 'admin.anamnese-atendimento.impressao', 'routeParams' => ['tipo' => $tipo, 'pessoa' => $pessoa], 'target' => 'new', 'icon' => 'printer', 'label' => 'Imprimir', 'class' => 'btn-secondary' ]) @endbutton @button([ 'route' => 'admin.agendamentos-atendimentos.index', 'routeParams' => ['tipo' => 'ODONTOLOGICO'], 'icon' => 'calendar', 'label' => 'Novo Agendamento', 'class' => 'btn-secondary' ]) @endbutton
@endsection