@extends('layouts.app') @section('title', 'Controlador') @section('page', 'Reporte Diario') @push('styles') @endpush @section('content')
@foreach ($checkpoints as $checkpoints) @endforeach
@foreach ($transportEnterprises as $transportEnterprise) @endforeach
{{-- Inspeccion Operativa / Documentaria --}}
Inspecciones Operativas / Documentarias
ID Punto de Control Fecha Hora Tipo E. Proveedora E. Transportista Dirigido Supervisor @if ($inspections->isEmpty()) No hay registros @else @foreach ($inspections as $key => $inspection) {{ $inspection->id_inspections }} {{ $inspection->checkpoint->name }} {{ $inspection->date }} {{ $inspection->hour }} {{ $inspection->inspectionType->name }} {{ $inspection->enterpriseSupplier->name }} {{ $inspection->enterpriseTransport->name }} {{ $inspection->targeted->name }} {{ $inspection->user->fullname }} @endforeach @endif
{{-- Dialogo Diario --}}
Dialogos Diarios
ID Punto de Control Fecha Hora E. Proveedora E. Transportista Tema Participantes Supervisor @if ($dialogs->isEmpty()) No hay registros @else @foreach ($dialogs as $key => $dialog) {{ $dialog->id_daily_dialogs }} {{ $dialog->checkpoint->name }} {{ $dialog->date }} {{ $dialog->hour }} {{ $dialog->enterpriseSupplier->name }} {{ $dialog->enterpriseTransport->name }} {{ $dialog->topic }} {{ $dialog->participants }} {{ $dialog->user->fullname }} @endforeach @endif
{{-- Pausas Activas --}}
Pausas Activas
ID Punto de Control Fecha Hora E. Proveedora E. Transportista Participantes Supervisor @if ($breaks->isEmpty()) No hay registros @else @foreach ($breaks as $key => $break) {{ $break->id_active_pauses }} {{ $break->checkpoint->name }} {{ $break->date }} {{ $break->hour }} {{ $break->enterpriseSupplier->name }} {{ $break->enterpriseTransport->name }} {{ $break->participants }} {{ $break->user->fullname }} @endforeach @endif
{{-- Prueba de Alcohol --}}
Prueba de Alcohol
ID Punto de Control Fecha Hora E. Proveedora E. Transportista Personal Supervisor @if ($alcoholTests->isEmpty()) No hay registros @else @foreach ($alcoholTests as $key => $alcoholTest) {{ $alcoholTest->id_alcohol_tests }} {{ $alcoholTest->checkpoint->name }} {{ $alcoholTest->date }} {{ $alcoholTest->hour }} {{ $alcoholTest->enterpriseSupplier->name }} {{ $alcoholTest->enterpriseTransport->name }} {{ $alcoholTest->employee->name }} {{ $alcoholTest->user->fullname }} @endforeach @endif
{{-- Control GPS --}}
Control GPS
ID Punto de Control Fecha Hora E. Proveedora E. Transportista Opcion Estado Supervisor @if ($gpsControls->isEmpty()) No hay registros @else @foreach ($gpsControls as $key => $gpsControl) {{ $gpsControl->id_gps_control }} {{ $gpsControl->checkpoint->name }} {{ $gpsControl->date }} {{ $gpsControl->hour }} {{ $gpsControl->enterpriseSupplier->name }} {{ $gpsControl->enterpriseTransport->name }} @if ($gpsControl->option == 1) VELOCIDAD @elseif ($gpsControl->option == 2) UBICACION @endif @if ($gpsControl->state == 1) Conforme @elseif ($gpsControl->state == 2) No Conforme @else Oportunidad de Mejora @endif {{ $gpsControl->user->fullname }} @endforeach @endif
@endsection