diff --git a/resources/views/export/recurring_invoices.blade.php b/resources/views/export/recurring_invoices.blade.php
index 7e3fe07efb6a..2a890af9b61f 100644
--- a/resources/views/export/recurring_invoices.blade.php
+++ b/resources/views/export/recurring_invoices.blade.php
@@ -10,24 +10,24 @@
{{ trans('texts.po_number') }} |
{{ trans('texts.status') }} |
@if ($account->custom_invoice_label1)
- {{ $account->custom_invoice_label1 }} |
+ {{ $account->present()->customInvoiceLabel1 }} |
@endif
@if ($account->custom_invoice_label2)
- {{ $account->custom_invoice_label2 }} |
+ {{ $account->present()->customInvoiceLabel2 }} |
@endif
@if ($account->custom_invoice_text_label1)
- {{ $account->custom_invoice_text_label1 }} |
+ {{ $account->present()->customInvoiceTextLabel1 }} |
@endif
@if ($account->custom_invoice_text_label2)
- {{ $account->custom_invoice_text_label2 }} |
+ {{ $account->present()->customInvoiceTextLabel2 }} |
@endif
{{ trans('texts.item_product') }} |
{{ trans('texts.item_notes') }} |
@if ($account->custom_invoice_item_label1)
- {{ $account->custom_invoice_item_label1 }} |
+ {{ $account->present()->customProductLabel1 }} |
@endif
@if ($account->custom_invoice_item_label2)
- {{ $account->custom_invoice_item_label2 }} |
+ {{ $account->present()->customProductLabel2 }} |
@endif
{{ trans('texts.item_cost') }} |
{{ trans('texts.item_quantity') }} |
@@ -61,10 +61,10 @@
@if ($account->custom_invoice_label2)
{{ $invoice->custom_value2 }} |
@endif
- @if ($account->custom_invoice_label1)
+ @if ($account->custom_invoice_text_label1)
{{ $invoice->custom_text_value1 }} |
@endif
- @if ($account->custom_invoice_label2)
+ @if ($account->custom_invoice_text_label2)
{{ $invoice->custom_text_value2 }} |
@endif
{{ $item->product_key }} |