From 61ce6ba4813373e003b24609803adf23e11b0276 Mon Sep 17 00:00:00 2001 From: Nafies Luthfi Date: Sat, 17 Nov 2018 21:08:34 +0800 Subject: [PATCH] Add tax_id on invoice print out --- resources/views/invoices/pdf.blade.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/resources/views/invoices/pdf.blade.php b/resources/views/invoices/pdf.blade.php index c1eefc1..1510e40 100755 --- a/resources/views/invoices/pdf.blade.php +++ b/resources/views/invoices/pdf.blade.php @@ -86,8 +86,12 @@ @if ($invoice->due_date) -

{{ trans('invoice.due_date') }}

-

{{ dateId($invoice->due_date) }}

+

{{ trans('invoice.due_date') }}

+

{{ dateId($invoice->due_date) }}

+ @endif + @if ($taxId = Option::get('agency_tax_id')) +

{{ __('agency.tax_id') }}

+

{{ $taxId }}

@endif