| (No definido) |
|
{{ $item->servicio_nombre }} |
₡ {{ number_format($item->servicio_valor,2,'.',',') }} |
@if ($item->impuesto_porcentaje)
{{ $item->impuesto_porcentaje }} %
@else
(No definido)
@endif
|
@if ($item->impuesto_porcentaje)
@if ($item->servicio_impuesto_incluido == 1)
₡ {{ number_format($item->servicio_valor,2,'.',',') }}
@else
₡ {{ number_format($item->servicio_valor + ($item->servicio_valor * ($item->impuesto_porcentaje/100)),2,'.',',') }}
@endif
@else
₡ {{ number_format($item->servicio_valor,2,'.',',') }}
@endif
|
{{ $item->servicio_combo_detalle_cantidad }} |
₡ {{ number_format($item->servicio_valor * $item->servicio_combo_detalle_cantidad,2,'.',',') }} |
@endforeach