Previews

No matching results.

x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div class="lui-payment_summary">
<div class="lui-payment_summary-price_row">
<span>Base Price</span>
<span>162,00 €</span>
</div>
<div class="lui-payment_summary-price_row">
<span>Shipping</span>
<span>22,00 €</span>
</div>
<div class="lui-payment_summary-price_row">
<span>Tax</span>
<span>1,00 €</span>
</div>
<div class="lui-payment_summary-total_row">
<span>Total</span>
<span>185,00 €</span>
</div>
</div>
1
2
3
4
<%= render LooposUi::Marketplace::PaymentSummary.new(base_price: rand(1000).to_money, extra_fees: [
{ description: "Shipping", price: rand(100).to_money },
{ description: "Tax", price: rand(50).to_money }
]) %>