| No. | Destinatario | Ciudad / Destino | Referencia | Número de Guía | Cantidad de Bultos |
|---|---|---|---|---|---|
| {{ $row['no'] }} | {{ $row['destinatario'] !== '' ? $row['destinatario'] : '-' }} | {{ $row['destino'] }} | {{ $row['referencia'] }} |
@if($hasBarcode && $row['guia'] !== '')
@php
$barcodeValue = trim((string) $row['guia']);
$customerName = trim((string) ($row['destinatario'] ?? ''));
$customerAddress = trim((string) ($row['destino'] ?? ''));
$barcodeValue = $barcodeValue
.'|'.str_replace('|', ' ', $customerName)
.'|'.str_replace('|', ' ', $customerAddress);
$barcodeValue = (string) \Illuminate\Support\Str::of($barcodeValue)->ascii();
$barcodeValue = substr($barcodeValue, 0, 160);
@endphp
@endif
{{ $row['guia'] !== '' ? $row['guia'] : 'SIN GUÍA' }}
|
{{ $row['bultos'] }} |