updated blade components

This commit is contained in:
Denis Duliçi
2023-07-11 12:17:01 +03:00
parent bfb37c62c6
commit 49a04cd854
29 changed files with 63 additions and 63 deletions

View File

@ -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')