@php use SimpleSoftwareIO\QrCode\Facades\QrCode; @endphp Recibo

{{ $venta->store->store_name ?? 'Mi Tienda' }}

Orden #: {{ $venta->id }}

Fecha: {{ $venta->sale_date->format('d/m/Y H:i') }}
Atendió: {{ $venta->user->name ?? 'Cajero' }}

Cliente: {{ $venta->customer->nombre ?? 'Consumidor Final' }}
@if($venta->customer) @if($venta->customer->numDocumento) Doc: {{ $venta->customer->numDocumento }}
@endif @if($venta->customer->nrc) NRC: {{ $venta->customer->nrc }}
@endif @endif

@foreach ($venta->details as $item)

{{ $item->productType->name }} {{ number_format($item->quantity, 0) }}

@endforeach

Pre Orden
¡Gracias por su compra!