Browse Source

Add tax_id on invoice print out

pull/26/head
Nafies Luthfi 7 years ago
parent
commit
61ce6ba481
  1. 8
      resources/views/invoices/pdf.blade.php

8
resources/views/invoices/pdf.blade.php

@ -86,8 +86,12 @@
</td>
<td class="text-center text-top">
@if ($invoice->due_date)
<h4 style="margin: 30px 3px 0;">{{ trans('invoice.due_date') }}</h4>
<p>{{ dateId($invoice->due_date) }}</p>
<h4 style="margin: 30px 3px 0;">{{ trans('invoice.due_date') }}</h4>
<p>{{ dateId($invoice->due_date) }}</p>
@endif
@if ($taxId = Option::get('agency_tax_id'))
<h4 style="margin: 30px 3px 0;">{{ __('agency.tax_id') }}</h4>
<p>{{ $taxId }}</p>
@endif
</td>
</tr>

Loading…
Cancel
Save