1
0
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:
Hillel Coren 2018-03-15 22:05:42 +02:00
parent b3f87c0f47
commit 5951406318

View File

@ -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>