Pre - Factura


{{ __('Resutaurante') }}:
{{$infoRestaurante->userName}}
{{ __('Direccion') }}:
{{$infoRestaurante->direccion}}
{{ __('NIT') }}:
{{number_format($infoRestaurante->nitRestaurante, 0, ',', '.')}}
{{ __('Cliente') }}:
{{$usuario->nombre ." ". $usuario->apellido}}
{{ __('Nickname') }}:
{{$usuario->userName}}
{{ __('Identificación') }}
{{number_format($usuario->numeroDocumento, 0, ',', '.')}}
{{ __('Pedido #') }} {{$pedido->referencia}}
@foreach ($pedido->getDetail as $pedidos)
{{$pedidos->nombreProducto}} X {{$pedidos->cantidad}}
${{number_format($pedidos->valorTotal, 0, ',', '.')}}
@endforeach
{{ __('Subtotal') }}
${{number_format($subTotal, 0, ',', '.')}}
{{ __('Imp') }}
${{number_format($impuesto, 0, ',', '.')}}
{{ __('Domicilio') }}
${{number_format($domicilio, 0, ',', '.')}}
{{ __('Total a pagar') }}
${{number_format($total, 0, ',', '.')}}


{{-- --}}