@include('dashboard.layouts.head')
@include('dashboard.layouts.header') @include('dashboard.layouts.modal-theme') @include('dashboard.layouts.nav')
Customer
{{ $orden['user_nombre'] }},
{{ session('usuario_data')['correo'] }}
P: (207) 532-9109
In attention to
{{ $orden['en_atencion'] }}
Purchase Order: {{ $orden['folio'] }}
Order
Paid: @if ($orden['pagado_status'] === 'No') No @else Yes @endif
Status: {{ $orden['estado'] }}
Currency: {{ $orden['moneda'] }}
{{-- progress bar --}}
Order Status
1
Confirmed
2
In transit
3
Pick-Up Ready
4
@if ($orden['estado_nivel'] === 4) Cancelled @else Closed @endif
{{--
Order
Paid: @if ($orden['pagado_status'] === 'No') No @else Yes @endif
Po: {{ $orden['folio'] }}
Status: {{ $orden['estado'] }}
Currency: {{ $orden['moneda'] }}
--}}
@foreach ($orden['registros_productos'] as $item) @endforeach
Description Quantity Price Subotal Currency
{{ $item['nombre'] }} --
{{ $item['desc'] }}
{{ $item['cantidad'] }} {{ $item['precio'] }} {{ $item['subtotal'] }} USD
Dates:
Creation date: {{ $orden['fecha_generado'] }}
Latest Estimated Arrival: {{ $orden['fecha_llegada_estimada'] }}
Expiration date: {{ $orden['fecha_vencimiento'] }}
Name of the pickup: {{ $orden['nombre_quien_recoge'] }}

Invoices

@foreach ($orden['documentos_facturas'] as $item) @endforeach
Date Number Documents
{{ $item['factura_fecha'] }} {{ $item['factura_serie_folio'] }}
@csrf
@csrf
@csrf
@csrf

Sub-total : ${{ $orden['subtotal'] }}

Total : ${{ $orden['total'] }}

@include('dashboard.layouts.footer')
@include('dashboard.layouts.scripts')