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

@ -221,7 +221,7 @@
@if (! $hideOpen)
<x-slot name="first">
@if ($item->open)
<x-money :amount="$item->open" :currency="default_currency()" convert />
<x-money :amount="$item->open" />
@else
<x-empty-data />
@endif
@ -233,7 +233,7 @@
@if (! $hideOverdue)
<x-slot name="second">
@if ($item->overdue)
<x-money :amount="$item->overdue" :currency="default_currency()" convert />
<x-money :amount="$item->overdue" />
@else
<x-empty-data />
@endif