mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
Merge pull request #4133 from beganovich/v2-show-amount-in-invoices-table
(v5) Show "amount" in the invoices table
This commit is contained in:
commit
92eb842357
@ -49,6 +49,11 @@
|
|||||||
{{ ctrans('texts.balance') }}
|
{{ ctrans('texts.balance') }}
|
||||||
</span>
|
</span>
|
||||||
</th>
|
</th>
|
||||||
|
<th class="px-6 py-3 text-xs font-medium leading-4 tracking-wider text-left text-white uppercase border-b border-gray-200 bg-primary">
|
||||||
|
<span role="button" wire:click="sortBy('amount')" class="cursor-pointer">
|
||||||
|
{{ ctrans('texts.amount') }}
|
||||||
|
</span>
|
||||||
|
</th>
|
||||||
<th class="px-6 py-3 text-xs font-medium leading-4 tracking-wider text-left text-white uppercase border-b border-gray-200 bg-primary">
|
<th class="px-6 py-3 text-xs font-medium leading-4 tracking-wider text-left text-white uppercase border-b border-gray-200 bg-primary">
|
||||||
<span role="button" wire:click="sortBy('due_date')" class="cursor-pointer">
|
<span role="button" wire:click="sortBy('due_date')" class="cursor-pointer">
|
||||||
{{ ctrans('texts.due_date') }}
|
{{ ctrans('texts.due_date') }}
|
||||||
@ -79,6 +84,9 @@
|
|||||||
<td class="px-6 py-4 text-sm leading-5 text-gray-500 whitespace-no-wrap">
|
<td class="px-6 py-4 text-sm leading-5 text-gray-500 whitespace-no-wrap">
|
||||||
{{ App\Utils\Number::formatMoney($invoice->balance, $invoice->client) }}
|
{{ App\Utils\Number::formatMoney($invoice->balance, $invoice->client) }}
|
||||||
</td>
|
</td>
|
||||||
|
<td class="px-6 py-4 text-sm leading-5 text-gray-500 whitespace-no-wrap">
|
||||||
|
{{ App\Utils\Number::formatMoney($invoice->amount, $invoice->client) }}
|
||||||
|
</td>
|
||||||
<td class="px-6 py-4 text-sm leading-5 text-gray-500 whitespace-no-wrap">
|
<td class="px-6 py-4 text-sm leading-5 text-gray-500 whitespace-no-wrap">
|
||||||
{{ $invoice->formatDate($invoice->due_date, $invoice->client->date_format()) }}
|
{{ $invoice->formatDate($invoice->due_date, $invoice->client->date_format()) }}
|
||||||
</td>
|
</td>
|
||||||
|
Loading…
Reference in New Issue
Block a user