diff --git a/resources/views/livewire/checkout-page.blade.php b/resources/views/livewire/checkout-page.blade.php index fd7b7a9e..ebfe6f3a 100644 --- a/resources/views/livewire/checkout-page.blade.php +++ b/resources/views/livewire/checkout-page.blade.php @@ -52,17 +52,19 @@ @endif - @foreach ($cart->taxBreakdown->amounts as $tax) -
-
- {{ $tax->description }} -
+ @if(config('lunar.pricing.stored_inclusive_of_tax') === false) + @foreach ($cart->taxBreakdown->amounts as $tax) +
+
+ {{ $tax->description }} +
-
- {{ $tax->price->formatted() }} -
-
- @endforeach +
+ {{ $tax->price->formatted() }} +
+
+ @endforeach + @endif