@extends('fragments.fullTemplate') @php $id_usuario = session('id_usuario'); if (! session('id_usuario')) { header('location: /'); die(); } @endphp @section('contenido')
@if(session()->has('success')) @endif @if(session()->has('warning')) @endif @if(session()->has('error')) @endif @if (count($errors) > 0) @endif
{{--}}
--}}
{{--

{{ $datos_muestras->count() }} resultados en esta página

--}}
{{--}}
--}} @foreach ($reportes as $reporte) @php if (!isset($reporte->datos_customer_invoice_x_report->datos_customer_invoice)){ continue; } @endphp @endforeach
No. de informe Empresa Cliente Empresa Informe Fecha** Muestra Modelo Estatus Fecha y hora entrada real** Acciones
{{$reporte->datos_programacion->first() ? $reporte->datos_programacion->first()->folio_programacion : 'N/A' }} {{$reporte->datos_customer_invoice_x_report->datos_customer_invoice->company_name}} {{$reporte->datos_customer_invoice_x_report->datos_customer_report->company_name}} {{ $reporte->fecha ? date("d/m/Y",strtotime($reporte->fecha)) : 'N/A' }} {{$reporte->muestra}} {{$reporte->modelo}} @switch($reporte->datos_programacion->first() ? $reporte->datos_programacion->first()->estatus : '1') @case(0) No aprobado @break @case(1) Pendiente @break @case(2) Aprobado @break @case(3) Carta aduana @break @default Pendiente @endswitch {{ $reporte->fecha_hora_entrada ? date("d/m/Y H:i:s",strtotime($reporte->fecha_hora_entrada))."Hrs." : 'N/A' }} @if($permisos->verqr == 1 || $permisos->gerente == 1) @endif
@endsection