updated blade components
This commit is contained in:
@@ -97,7 +97,7 @@
|
||||
</x-table.td>
|
||||
|
||||
<x-table.td class="w-6/12 sm:w-3/12" kind="amount">
|
||||
<x-money :amount="$item->balance" :currency="$item->currency_code" convert />
|
||||
<x-money :amount="$item->balance" :currency="$item->currency_code" />
|
||||
</x-table.td>
|
||||
|
||||
<x-table.td kind="action">
|
||||
|
||||
@@ -178,7 +178,7 @@
|
||||
</div>
|
||||
|
||||
<span>
|
||||
<x-money :amount="$account->opening_balance" :currency="$account->currency_code" convert />
|
||||
<x-money :amount="$account->opening_balance" :currency="$account->currency_code" />
|
||||
</span>
|
||||
</div>
|
||||
@stack('opening_balance_input_end')
|
||||
@@ -323,7 +323,7 @@
|
||||
</x-table.td>
|
||||
|
||||
<x-table.td class="w-6/12 lg:w-3/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">
|
||||
@@ -429,10 +429,10 @@
|
||||
|
||||
<x-table.td class="w-6/12 sm:w-3/12" kind="amount">
|
||||
<x-slot name="first">
|
||||
<x-money :amount="$item->expense_transaction->amount" :currency="$item->expense_transaction->currency_code" convert />
|
||||
<x-money :amount="$item->expense_transaction->amount" :currency="$item->expense_transaction->currency_code" />
|
||||
</x-slot>
|
||||
<x-slot name="second">
|
||||
<x-money :amount="$item->income_transaction->amount" :currency="$item->income_transaction->currency_code" convert />
|
||||
<x-money :amount="$item->income_transaction->amount" :currency="$item->income_transaction->currency_code" />
|
||||
</x-slot>
|
||||
</x-table.td>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user