From b001da13d95093b587cf22b31d2eace854180c44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Mon, 5 Oct 2020 13:45:09 +0200 Subject: [PATCH] Show "amount" in the invoices-table --- .../components/livewire/invoices-table.blade.php | 8 ++++++++ 1 file changed, 8 insertions(+) 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 14004a64a42c..8abdc3d15b7b 100644 --- a/resources/views/portal/ninja2020/components/livewire/invoices-table.blade.php +++ b/resources/views/portal/ninja2020/components/livewire/invoices-table.blade.php @@ -49,6 +49,11 @@ {{ ctrans('texts.balance') }} + + + {{ ctrans('texts.amount') }} + + {{ ctrans('texts.due_date') }} @@ -79,6 +84,9 @@ {{ App\Utils\Number::formatMoney($invoice->balance, $invoice->client) }} + + {{ App\Utils\Number::formatMoney($invoice->amount, $invoice->client) }} + {{ $invoice->formatDate($invoice->due_date, $invoice->client->date_format()) }}