@if ($vista == 1)
@foreach($interrogantes as $int)
@if ($tipo == "mostrar")
@if($evaluado)
@if($int->int_tipo == 1 || $int->int_tipo == 3)
@livewire('showrespuesta', ['interrogante_id' => $int->id,'asignacionid' => $asignacionid,'tipo' => $tipo,"evaluado"=>$evaluado])
@endif
@else
@livewire('showrespuesta', ['interrogante_id' => $int->id,'asignacionid' => $asignacionid,'tipo' => $tipo,"evaluado"=>$evaluado])
@endif
@elseif($tipo == "imprimir2")
@livewire('showrespuesta', ['interrogante_id' => $int->id,'asignacionid' => $asignacionid,'tipo' => $tipo])
@else
|
@livewire('showrespuesta', ['interrogante_id' => $int->id,'asignacionid' => $asignacionid,'tipo' => $tipo,"evaluado"=>$evaluado]) |
@endif
@endforeach
@else
@foreach($interrogantes as $int)
@if ($tipo == "mostrar" && $int->int_tipo == 1)
|
@livewire('showrespuesta', ['interrogante_id' => $int->id,'asignacionid' => $asignacionid,'tipo' => $tipo,"evaluado"=>$evaluado])
|
@endif
@endforeach
@endif