diff --git a/resources/views/export/clients.blade.php b/resources/views/export/clients.blade.php
index 888d150616..24bf0331a5 100644
--- a/resources/views/export/clients.blade.php
+++ b/resources/views/export/clients.blade.php
@@ -30,6 +30,9 @@
@if ($account->custom_client_label2)
{{ $account->present()->customClientLabel2 }} |
@endif
+ @if ($account->hasReminders())
+ {{ trans('texts.reminders') }} |
+ @endif
{{ trans('texts.first_name') }} |
{{ trans('texts.last_name') }} |
{{ trans('texts.email') }} |
@@ -75,6 +78,9 @@
@if ($account->custom_client_label2)
{{ $client->custom_value2 }} |
@endif
+ @if ($account->hasReminders())
+ {{ $client->send_reminders ? trans('texts.yes') : trans('texts.no') }} |
+ @endif
{{ $client->contacts[0]->first_name }} |
{{ $client->contacts[0]->last_name }} |
{{ $client->contacts[0]->email }} |