@if($order)
  • Order #: {{ $order->folio }}
  • Status: {{ $order->estado }}
  • Date: {{ $order->fecha_generado }}
  • Paid: @if($order->pagado == 0) NO @else YES @endif
@endif
  • Customer: {{ $order->user_nombre }}
  • Contact Email: {{ $order->correo }}
  • Contact Mobile: {{ $order->cel_contacto }}
  • Payment condition: {{ $order->condicion_pago }}
  • Company: {{ $order->compania }}
  • Whatsapp: {{ $order->whatsapp }}
  • Customer comments: {{ $order->notas ? $order->notas : 'No comments' }}
  • Home delivery: {{ $order->pasa_recoger ? 'Yes' : 'No' }}
  • Who picks up? {{ $order->nombre_quien_recoge ? $order->nombre_quien_recoge : '---' }}
  • Package type: {{ $order->tipo_embalaje }}
@if(empty($order->registros_productos)) @else @foreach($order->registros_productos as $item) @endforeach @endif
Description Qty Price Subtotal Currency ETA MOQ
No results found
{{ $item->nombre }} {{ $item->cantidad }} ${{ number_format($item->precio, 2) }} ${{ number_format($item->subtotal, 2) }} {{ $order->moneda }} {{ $item->ETA }} {{ $item->MOQ }}
  • Description: {{ $order->direccion_entrega->desc }}
  • Detail: {{ $order->direccion_entrega->detalle }}
  • Reference: {{ $order->direccion_entrega->referencias }}
  • Phone: {{ $order->direccion_entrega->telefono }}
  • Invoice: @if($order->fac_invoice != '') @else --- @endif
  • Invoice with series: @if($order->fac_invoice_series != '') @else --- @endif
  • Packing list: @if($order->fac_packing_list != '') @else --- @endif
  • Sales order: @if($order->so_pdf != '') @else --- @endif
Subtotal: $ {{ number_format($order->subtotal, 2) }} {{ $order->moneda }}
Total: $ {{ number_format($order->total, 2) }} {{ $order->moneda }}
Balance: $ {{ number_format($order->saldo, 2) }} {{ $order->moneda }}