Transactions

See all
@for (transaction of transactions(); track transaction) {
arrow_upward
{{ transaction.recipient.name }}
@switch (transaction.status) { @case ('cancelled') { Cancelled · {{ transaction.createdAt }} } @case ('approved') { Sent by @if (transaction.recipient.id === transaction.sender.id) { you } @else { {{ transaction.sender.name }} } · {{ transaction.createdAt }} } }
{{ transaction.to.amount }} {{ transaction.to.currency }}
{{ transaction.from.amount }} {{ transaction.from.currency }}
} @empty {
There are no transactions.
}