| Datos Estudiante | Carrera | Hepatitis B | COVID | Influenza | Fotografía | Documentación adicionales | Validación | Opciones | |
|---|---|---|---|---|---|---|---|---|---|
|
{{ $student['rut'] }}
@if(isset($student['activo']) && $student['activo'] == '0')
@endif
{{ $student['nombre'] ?? $student['name'] }}
{{ $student['apellido_paterno'] ?? '' }}
{{ $student['apellido_materno'] ?? '' }}
{{-- Etiqueta roja de Inactivo --}}
@if (isset($student['mail']))
{{ $student['mail'] }}
@endif
|
{{ $student['program'] }}
{{-- Condición estricta: Solo si la carrera contiene "tecnolog" y existe una mención --}}
@if(str_contains(strtolower($student['program']), 'tecnolog') && !empty($student['mencion']))
{{ $student['mencion'] }}
@endif
|
@foreach (['Hepatitis B', 'Covid', 'Influenza', 'Fotografía'] as $tipo)
|
@endforeach
Ver Ficha |