close #2131 (#97v2nm) Fixed: Invoice/Bill title of documents' PDF/print templates
This commit is contained in:
@ -108,6 +108,8 @@
|
||||
text-document-number="{{ $textDocumentNumber }}"
|
||||
text-due-at="{{ $textDueAt }}"
|
||||
text-order-number="{{ $textOrderNumber }}"
|
||||
text-document-title="{{ $textDocumentTitle }}"
|
||||
text-document-subheading="{{ $textDocumentSubheading }}"
|
||||
hide-items="{{ $hideItems }}"
|
||||
hide-name="{{ $hideName }}"
|
||||
hide-description="{{ $hideDescription }}"
|
||||
|
@ -34,6 +34,8 @@
|
||||
text-document-number="{{ $textDocumentNumber }}"
|
||||
text-due-at="{{ $textDueAt }}"
|
||||
text-order-number="{{ $textOrderNumber }}"
|
||||
text-document-title="{{ $textDocumentTitle }}"
|
||||
text-document-subheading="{{ $textDocumentSubheading }}"
|
||||
hide-items="{{ $hideItems }}"
|
||||
hide-name="{{ $hideName }}"
|
||||
hide-description="{{ $hideDescription }}"
|
||||
@ -77,6 +79,8 @@
|
||||
text-document-number="{{ $textDocumentNumber }}"
|
||||
text-due-at="{{ $textDueAt }}"
|
||||
text-order-number="{{ $textOrderNumber }}"
|
||||
text-document-title="{{ $textDocumentTitle }}"
|
||||
text-document-subheading="{{ $textDocumentSubheading }}"
|
||||
hide-items="{{ $hideItems }}"
|
||||
hide-name="{{ $hideName }}"
|
||||
hide-description="{{ $hideDescription }}"
|
||||
@ -120,6 +124,8 @@
|
||||
text-document-number="{{ $textDocumentNumber }}"
|
||||
text-due-at="{{ $textDueAt }}"
|
||||
text-order-number="{{ $textOrderNumber }}"
|
||||
text-document-title="{{ $textDocumentTitle }}"
|
||||
text-document-subheading="{{ $textDocumentSubheading }}"
|
||||
hide-items="{{ $hideItems }}"
|
||||
hide-name="{{ $hideName }}"
|
||||
hide-description="{{ $hideDescription }}"
|
||||
|
@ -2,12 +2,13 @@
|
||||
<div class="col-100">
|
||||
<div class="text">
|
||||
<h3>
|
||||
{{ setting('invoice.title') }}
|
||||
{{ $textDocumentTitle }}
|
||||
</h3>
|
||||
@if (setting('invoice.subheading'))
|
||||
<h5>
|
||||
{{ setting('invoice.subheading') }}
|
||||
</h5>
|
||||
|
||||
@if ($textDocumentSubheading)
|
||||
<h5>
|
||||
{{ $textDocumentSubheading }}
|
||||
</h5>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
|
@ -2,12 +2,13 @@
|
||||
<div class="col-100">
|
||||
<div class="text">
|
||||
<h3>
|
||||
{{ setting('invoice.title') }}
|
||||
{{ $textDocumentTitle }}
|
||||
</h3>
|
||||
@if (setting('invoice.subheading'))
|
||||
<h5>
|
||||
{{ setting('invoice.subheading') }}
|
||||
</h5>
|
||||
|
||||
@if ($textDocumentSubheading)
|
||||
<h5>
|
||||
{{ $textDocumentSubheading }}
|
||||
</h5>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
|
@ -2,12 +2,13 @@
|
||||
<div class="col-100">
|
||||
<div class="text">
|
||||
<h3>
|
||||
{{ setting('invoice.title') }}
|
||||
{{ $textDocumentTitle }}
|
||||
</h3>
|
||||
@if (setting('invoice.subheading'))
|
||||
<h5>
|
||||
{{ setting('invoice.subheading') }}
|
||||
</h5>
|
||||
|
||||
@if ($textDocumentSubheading)
|
||||
<h5>
|
||||
{{ $textDocumentSubheading }}
|
||||
</h5>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user