mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
Add reminders to client export
This commit is contained in:
parent
b3f87c0f47
commit
5951406318
@ -30,6 +30,9 @@
|
||||
@if ($account->custom_client_label2)
|
||||
<td>{{ $account->present()->customClientLabel2 }}</td>
|
||||
@endif
|
||||
@if ($account->hasReminders())
|
||||
<td>{{ trans('texts.reminders') }}</td>
|
||||
@endif
|
||||
<td>{{ trans('texts.first_name') }}</td>
|
||||
<td>{{ trans('texts.last_name') }}</td>
|
||||
<td>{{ trans('texts.email') }}</td>
|
||||
@ -75,6 +78,9 @@
|
||||
@if ($account->custom_client_label2)
|
||||
<td>{{ $client->custom_value2 }}</td>
|
||||
@endif
|
||||
@if ($account->hasReminders())
|
||||
<td>{{ $client->send_reminders ? trans('texts.yes') : trans('texts.no') }}</td>
|
||||
@endif
|
||||
<td>{{ $client->contacts[0]->first_name }}</td>
|
||||
<td>{{ $client->contacts[0]->last_name }}</td>
|
||||
<td>{{ $client->contacts[0]->email }}</td>
|
||||
|
Loading…
Reference in New Issue
Block a user