diff --git a/app/resources/views/ventas/show/forma_pago/anticipo.blade.php b/app/resources/views/ventas/show/forma_pago/anticipo.blade.php index d9f3095..5bb9fbf 100644 --- a/app/resources/views/ventas/show/forma_pago/anticipo.blade.php +++ b/app/resources/views/ventas/show/forma_pago/anticipo.blade.php @@ -1,6 +1,6 @@ Anticipo - + {{ $format->percent($anticipo['uf'] / $venta->valor, 2, true) }} {{$format->ufs($anticipo['uf'])}} {{$format->pesos($anticipo['pesos'])}} diff --git a/app/resources/views/ventas/show/forma_pago/bono_pie.blade.php b/app/resources/views/ventas/show/forma_pago/bono_pie.blade.php index adae804..1201915 100644 --- a/app/resources/views/ventas/show/forma_pago/bono_pie.blade.php +++ b/app/resources/views/ventas/show/forma_pago/bono_pie.blade.php @@ -14,7 +14,7 @@ @endif @if ($bonoPie !== null) - + {{ $format->percent($bonoPie->pago->valor() / $venta->valor, 2, true) }} {{$format->ufs($bonoPie->pago->valor())}} {{$format->pesos($bonoPie->pago->valor)}} diff --git a/app/resources/views/ventas/show/forma_pago/credito.blade.php b/app/resources/views/ventas/show/forma_pago/credito.blade.php index 0310043..6a34bb9 100644 --- a/app/resources/views/ventas/show/forma_pago/credito.blade.php +++ b/app/resources/views/ventas/show/forma_pago/credito.blade.php @@ -14,7 +14,7 @@ @endif @if ($credito !== null) - + {{ $format->percent($credito->pago->valor() / $venta->valor, 2, true) }} {{$format->ufs($credito->pago->valor())}} diff --git a/app/resources/views/ventas/show/forma_pago/pie.blade.php b/app/resources/views/ventas/show/forma_pago/pie.blade.php index 6f3df32..5e81861 100644 --- a/app/resources/views/ventas/show/forma_pago/pie.blade.php +++ b/app/resources/views/ventas/show/forma_pago/pie.blade.php @@ -8,7 +8,7 @@ - + {{ $format->percent($pie->valor / $venta->valor, 2, true) }} {{$format->ufs($pie->valor)}} {{$format->pesos($pie->valor * $pie->uf)}} Cuotas @@ -25,7 +25,7 @@ Pagado - + {{$format->percent($pie->pagado() / $venta->valor, 2, true)}} {{$format->ufs($pie->pagado())}} {{$format->pesos($pie->pagado('pesos'))}}