Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
royduin committed Aug 7, 2021
1 parent 1621edb commit 1a4de04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/views/cart/coupon.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</x-rapidez::button>
</form>
<p class="text-red-500 text-xs italic w-3/4 mt-3" v-if="submitError">@{{ submitError }}</p>
<div class="relative rounded-md" v-if="cart.discount_name && && cart.discount_amount > 0">
<div class="relative rounded-md" v-if="cart.discount_name && cart.discount_amount > 0">
<div class="flex items-center">
<button v-on:click="removeCoupon">
<x-heroicon-s-x class="h-4 w-4 text-black-400"/>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/cart/overview.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class="ml-1"
<div class="w-1/2 text-right">@{{ cart.subtotal | price }}</div>
<div class="w-1/2">@lang('Tax')</div>
<div class="w-1/2 text-right">@{{ cart.tax | price }}</div>
<div class="w-1/2" v-if="cart.discount_name && && cart.discount_amount > 0">@lang('Discount'): @{{ cart.discount_name }}</div>
<div class="w-1/2" v-if="cart.discount_name && cart.discount_amount > 0">@lang('Discount'): @{{ cart.discount_name }}</div>
<div class="w-1/2" v-if="!cart.discount_name && cart.discount_amount > 0">@lang('Discount')</div>
<div class="w-1/2 text-right" v-if="cart.discount_amount > 0">@{{ cart.discount_amount | price }}</div>
<div class="w-1/2 font-bold">@lang('Total')</div>
Expand Down

0 comments on commit 1a4de04

Please sign in to comment.