From a5fec384a8253d1aebb45bd3b14fc1d0dd87726b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Tue, 25 May 2021 18:19:07 +0200 Subject: [PATCH] Swap balance & amount in invoices-table.blade.php --- .../components/livewire/invoices-table.blade.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/resources/views/portal/ninja2020/components/livewire/invoices-table.blade.php b/resources/views/portal/ninja2020/components/livewire/invoices-table.blade.php index c828f58c5fa3..617a72fd442c 100644 --- a/resources/views/portal/ninja2020/components/livewire/invoices-table.blade.php +++ b/resources/views/portal/ninja2020/components/livewire/invoices-table.blade.php @@ -45,13 +45,13 @@ - - {{ ctrans('texts.balance') }} + + {{ ctrans('texts.amount') }} - - {{ ctrans('texts.amount') }} + + {{ ctrans('texts.balance') }} @@ -82,10 +82,10 @@ {{ $invoice->formatDate($invoice->date, $invoice->client->date_format()) }} - {{ App\Utils\Number::formatMoney($invoice->balance, $invoice->client) }} + {{ App\Utils\Number::formatMoney($invoice->amount, $invoice->client) }} - {{ App\Utils\Number::formatMoney($invoice->amount, $invoice->client) }} + {{ App\Utils\Number::formatMoney($invoice->balance, $invoice->client) }} {{ $invoice->formatDate($invoice->due_date, $invoice->client->date_format()) }}