{{-- @if ($data->total_justify !== 0) @endif @if ($data->total_classes !== 0) @endif @if ($data->total_ead !== 0) @endif --}}
Nómina: {{ $nom_name }}
Total Justificaciones: {{ $data->total_justify }}
Total por clase: {{ $data->total_classes }}
Total educacion a distancia: {{ $data->total_ead }}
Total: {{ $total_general }}
{{ set_time_limit(3600) }} @foreach ($data as $teacher) {{-- Detalle de maestro --}}
Docente
N° empleado Apellido Paterno Apellido Materno Nombre Nombre completo Cuenta bancaria CLABE Banco IMSS RFC CURP Tabulador Total de horas Ganancia
{{ $teacher->no_employe }} {{ $teacher->father_last_name }} {{ $teacher->mother_last_name }} {{ $teacher->name }} {{ "$teacher->name $teacher->father_last_name $teacher->mother_last_name" }} {{ $teacher->bank_account }} {{ $teacher->clabe }} {{ $teacher->bank }} {{ $teacher->imss ? $teacher->imss : 'n/a' }} {{ $teacher->rfc ? $teacher->rfc : 'n/a' }} {{ $teacher->curp ? $teacher->curp : 'n/a' }} {{ $teacher->tabulator_level }} {{ $teacher->total_hours }} {{ $teacher->nom_total }}
Informacion recopilada
Horas esperadas Horas cumplidas Horas con falta Horas justificadas Horas Totales Pago Pago Presencial Pago de justificaciones Pagos sin justificar Pago esperado
{{ $teacher->total_hours_teacher }} {{ $teacher->punches_total_hours }} {{ abs($teacher->absence) }} {{ $teacher->justify_total_hours }} {{ $teacher->total_hours }} {{ $teacher->nom_total }} {{ $teacher->nom_total - $teacher->justify_nom_total }} {{ $teacher->justify_nom_total }} {{ $teacher->profit - $teacher->nom_total }} {{ $teacher->profit }}
@if ($teacher->showPayroll) {{-- Detalle de materias --}} @foreach ($teacher->period as $date => $detail) @foreach ($detail->classes as $schedule) @endforeach @endforeach
Presenciales
Fecha Materia Horario Entrada Salida Horas Tabulador Total Motivo de descuento
{{ $date }} {{ $schedule->class->name }} {{ $schedule->start }} - {{ $schedule->end }} {{ $schedule->in ? substr($schedule->in['check'], 11) : '--' }} - {{ $schedule->in ? $schedule->in['diff_human'] : '--' }} {{ $schedule->out ? substr($schedule->out['check'], 11) : '--' }} - {{ $schedule->out ? $schedule->out['diff_human'] : '--' }} {{ $schedule->hours_worked_compare }} @foreach ($schedule->class->degree->tabulators as $tab) @if ($tab->type == $teacher->tabulator_type) @switch($teacher->tabulator_level) @case('Licenciatura') {{ $tab->tabulator_degree }} @break @case('Maestría') {{ $tab->tabulator_master }} @break @case('Doctorado') {{ $tab->tabulator_doctorate }} @break @case('Especialidad') {{ $tab->tabulator_especiality }} @break @case('Diplomado') {{ $tab->tabulator_diplomate }} @break @endswitch @endif @endforeach {{ $schedule->cost }} {{$schedule->motive_discount}}
@endif {{-- Educacion a distancia --}} @if ($teacher->showEAD) @foreach ($teacher->ead_classes as $ead) @endforeach
Educación a distancia
Carrera Materia Tipo clase Grupo No. Estudiantes Horas Tabulador Total
{{ $ead->career->name }} {{ $ead->school_subject->name }} {{ $ead->class_type }} {{ $ead->group }} {{ $ead->students }} {{ $ead->hours }} {{ $ead->tabulator }} {{ $ead->total_price }}
@endif {{-- Justificaciones --}} @if ($teacher->showJustifies) @foreach ($teacher->justifies as $justify) @endforeach
Justificaciones
Categoría Clase Fecha Día Hora de clase Horas justificadas Motivo Tabulador Total
{{ $justify->category_justify }} {{ $justify->schedule->class->name ?? "Clase inexistente" }} {{ $justify->justify_date ?? "No disponible" }} {{ $justify->schedule ? __("messages.". $justify->schedule->day) :""}} {{ $justify->schedule->start ?? "Clase inexistente"}} - {{ $justify->schedule->end ?? "Clase inexistente"}} {{ $justify->hours }} {{ $justify->justifique }} {{ $justify->tabulator_amount }} {{ $justify->tabulator_amount * $justify->hours }}
@endif {{-- Inicio modulos Educacion a distancia --}} {{-- Detalle de diseños instruccionales --}} {{-- @foreach ($teacher->instructional_design as $design) @endforeach
Diseños instruccionales
Carrera Materia Docente Tipo Horas Monto
{{ $design->degree->name }} {{ $design->school_subject ? $design->school_subject->name : '--' }} {{ $design->teacher->full_name }} {{ $design->design_type }} {{ $design->hours }} {{ $design->amount }}
--}} {{-- Detalle de webinars --}} {{-- @foreach ($teacher->webinars as $webinar) @endforeach
Webinars
Tipo Nombre Grupo Docente Número Tabulador Horas Monto
{{ $webinar->course_type }} {{ $webinar->name }} {{ $webinar->group_name }} {{ $webinar->teacher->full_name }} {{ $webinar->students }} {{ $webinar->tabulator }} {{ $webinar->hours }} {{ $webinar->amount }}
--}} {{-- Detalle de Direcciones de tesis --}} {{-- @foreach ($teacher->thesis_directions as $thesis) @endforeach
Direcciones de tesis
Asesorado Programa Folio Pago Paq. Pagado Director de Tesis Monto a Pagar
{{ $thesis->full_name }} {{ $thesis->degree->full_name }} {{ $thesis->payment_folio }} {{ $thesis->advisory_package }} {{ $thesis->teacher->full_name }} {{ $thesis->payment }}
--}} {{-- Detalle de sinodales --}} {{--
Sinodales
Tipo Asesorado Programa Examen Sinodal 1 Sinodal 2 Sinodal 3
--}} {{-- Fin modulos Educacion a distancia --}}
@endforeach