updated blade components
This commit is contained in:
@ -31,7 +31,7 @@
|
||||
@stack('price_td_start')
|
||||
@if (! $hidePrice)
|
||||
<td class="price text text-alignment-right text-right">
|
||||
<x-money :amount="$item->price" :currency="$document->currency_code" convert />
|
||||
<x-money :amount="$item->price" :currency="$document->currency_code" />
|
||||
</td>
|
||||
@endif
|
||||
@stack('price_td_end')
|
||||
@ -59,7 +59,7 @@
|
||||
</td>
|
||||
@else
|
||||
<td class="discount text text-alignment-right text-right">
|
||||
<x-money :amount="$item->discount" :currency="$document->currency_code" convert />
|
||||
<x-money :amount="$item->discount" :currency="$document->currency_code" />
|
||||
</td>
|
||||
@endif
|
||||
@stack('discount_td_end')
|
||||
@ -69,7 +69,7 @@
|
||||
@stack('total_td_start')
|
||||
@if (! $hideAmount)
|
||||
<td class="total text text-alignment-right text-right">
|
||||
<x-money :amount="$item->total" :currency="$document->currency_code" convert />
|
||||
<x-money :amount="$item->total" :currency="$document->currency_code" />
|
||||
</td>
|
||||
@endif
|
||||
@stack('total_td_end')
|
||||
|
Reference in New Issue
Block a user