Dirección
@php
$address = "{$order->Client->address} {$order->Client->city_name}, {$order->Client->getho}";
@endphp
{{ Str::substr($address, 0, 100) }}
|
{{ $order->Client->City ? strtoupper($order->Client->City->abbreviation) : $order->id }}
{{ $order->Client->Zone ? strtoupper($order->Client->Zone->code) : $order->id }}
{{!is_null($configuration) ? $configuration->getCurrencySimbolAttribute() : '$'}}{{ number_format($order->total, 2, ',', '.') }}
|
Contenido
@if(isset($order->content)
&& is_array(json_decode($order->content)))
@php
$products = json_decode($order->content);
@endphp
@if(count($products) > 0)
|
Remitente
{{ $order->logSender ? $order->logSender->name : '' }}, Tel: {{ $order->logSender ? $order->logSender->phone : '' }} |
Domiciliario
{{ $order->Domiciliario ? $order->Domiciliario->name : '' }} |
Destinatario
{{ $order->client ? $order->client->name : '' }} |
Teléfono
{{ $order->client ? $order->client->phone : '' }} |
Observaciones
{{ Str::substr($order->observation, 0, 250) }}. @if (Str::length($order->observation) > 250) .. @endif |
{!! DNS1D::getBarcodeHTML($order->reference, 'C39', 1.9, 30) !!}
@if (isset($configuration) and !is_null($configuration))
|