| ITEM | CANT | $$$ |
|---|---|---|
| {{$producto['name']}} | x{{$producto['cantidad']}} | @php try { $precio = $producto['precio']; if($producto['tipo_descuento'] == 'fijo' || $producto['tipo_descuento'] == 'porcentaje') { if ($producto['tipo_descuento'] == 'fijo'){ $precio = $producto['precio'] - $producto['descuento']; }else { $d = $producto['descuento']; $precio = $precio - ($d * $precio / 100); } } $total = $precio * $producto['cantidad']; $total_pagar += $total; }catch(Exepction $e) { $e->message(); } @endphp{{number_format($total)}} |
| TOTAL A PAGAR | {{number_format($total_pagar)}} | |
@if(Auth::user()->negocio->telefono != null)
{{Auth::user()->negocio->telefono}}
@endif
@if(Auth::user()->negocio->direccion != null)
{{Auth::user()->negocio->direccion}}
@endif
¡GRACIAS POR SU COMPRA!