Add API routes and expand v2 frontend

This commit is contained in:
James Cole
2023-09-20 06:18:25 +02:00
parent 0e3ebb9f1a
commit 6b5774a66d
8 changed files with 69 additions and 48 deletions

View File

@@ -13,7 +13,7 @@
x-text="account.name"></a>
<span class="small">
@include('partials.elements.amount', ['autoConversion' => true,'amount' => 'account.balance','native' => 'account.native_balance'])
@include('partials.elements.amount', ['autoConversion' => true,'type' => 'null','amount' => 'account.balance','native' => 'account.native_balance'])
</span>
</h3>
</div>
@@ -71,7 +71,7 @@
</template>
<template x-for="transaction in group.transactions">
<span>
@include('partials.elements.amount', ['autoConversion' => true,'amount' => 'transaction.amount','native' => 'transaction.native_amount'])
@include('partials.elements.amount', ['autoConversion' => true,'type' => 'transaction.type','amount' => 'transaction.amount','native' => 'transaction.native_amount'])
</span>
</template>
</td>