@extends("profesor.layout.layout") @section("styles") @php $titulo = "Asistencia"; $modulo = "Control"; $vista = "Editar lista"; @endphp {{ getenv("APP_NAME") }} | {{ $titulo }} @endsection @section("contenido")
@if ($errors->any())

El registro tiene los siguientes errores.

@endif @if (session('success')) @endif
@csrf
{{ $seccion->seccion }} / {{ $materia->materia }}
id)}}"> Fecha y hora que paso lista: {{date("d-m-Y H:i",strtotime($asistencias[0]->created_at))}}
@foreach($asistencias as $asistencia) @endforeach
# Primer apellido Segundo apellido Nombres Presente Tardía Ausente Escapado Justificada Comentario
{{ $loop->index + 1 }} {{ $asistencia->estudiante->primer_apellido }} {{ $asistencia->estudiante->segundo_apellido }} {{ $asistencia->estudiante->nombre }}
tipo_asistencia == 1 ? 'checked' : '' }} />
tipo_asistencia== 2 ? 'checked' : '' }} />
tipo_asistencia == 3 ? 'checked' : '' }} />
tipo_asistencia== 5 ? 'checked' : '' }} />
tipo_asistencia== 4 ? 'checked' : '' }} />
@endsection @section("scripts") @vite('resources/js/app.js') @endsection