mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
Merge pull request #4819 from beganovich/v5-infinite-recurring-invoices
(v5) Recurring invoices table: -1 to ♾
This commit is contained in:
commit
d70b1d8fbb
@ -56,7 +56,8 @@
|
||||
{{ $invoice->formatDate($invoice->next_send_date, $invoice->client->date_format()) }}
|
||||
</td>
|
||||
<td class="px-6 py-4 whitespace-no-wrap text-sm leading-5 text-gray-500">
|
||||
{{ $invoice->remaining_cycles }}
|
||||
{{ $invoice->remaining_cycles == '-1' ? ctrans('texts.endless') : $invoice->remaining_cycles }}
|
||||
@if($invoice->remaining_cycles == '-1') ∞ @endif
|
||||
</td>
|
||||
<td class="px-6 py-4 whitespace-no-wrap text-sm leading-5 text-gray-500">
|
||||
{{ \App\Utils\Number::formatMoney($invoice->amount, $invoice->client) }}
|
||||
|
Loading…
Reference in New Issue
Block a user