updated blade components
This commit is contained in:
@ -163,7 +163,7 @@
|
||||
@if (! $hideAmount)
|
||||
<x-table.td class="{{ $classAmount }}" kind="amount">
|
||||
@stack('amount_td_inside_start')
|
||||
<x-money :amount="$item->amount" :currency="$item->currency_code" convert />
|
||||
<x-money :amount="$item->amount" :currency="$item->currency_code" />
|
||||
@stack('amount_td_inside_end')
|
||||
</x-table.td>
|
||||
|
||||
|
@ -62,7 +62,7 @@
|
||||
</div>
|
||||
|
||||
<span class="font-normal">
|
||||
<x-money :amount="$document_item->price" :currency="$document->currency_code" convert />
|
||||
<x-money :amount="$document_item->price" :currency="$document->currency_code" />
|
||||
</span>
|
||||
|
||||
<div class="w-40 font-normal text-sm truncate">
|
||||
@ -100,7 +100,7 @@
|
||||
|
||||
@if ($document->paid)
|
||||
<span>
|
||||
<x-money :amount="$document->paid" :currency="$document->currency_code" convert />
|
||||
<x-money :amount="$document->paid" :currency="$document->currency_code" />
|
||||
</span>
|
||||
@endif
|
||||
</div>
|
||||
@ -111,7 +111,7 @@
|
||||
</span>
|
||||
|
||||
<span>
|
||||
<x-money :amount="$document->amount" :currency="$document->currency_code" convert />
|
||||
<x-money :amount="$document->amount" :currency="$document->currency_code" />
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -97,7 +97,7 @@
|
||||
</x-table.td>
|
||||
|
||||
<x-table.td class="w-4/12 sm:w-2/12" kind="amount">
|
||||
<x-money :amount="$item->amount" :currency="$item->currency_code" convert />
|
||||
<x-money :amount="$item->amount" :currency="$item->currency_code" />
|
||||
</x-table.td>
|
||||
|
||||
<x-table.td kind="action">
|
||||
|
Reference in New Issue
Block a user