diff --git a/resources/views/app/pdf/invoice/partials/table.blade.php b/resources/views/app/pdf/invoice/partials/table.blade.php index 98ee76db..14890953 100644 --- a/resources/views/app/pdf/invoice/partials/table.blade.php +++ b/resources/views/app/pdf/invoice/partials/table.blade.php @@ -7,6 +7,9 @@ @if($invoice->discount_per_item === 'YES') @lang('pdf_discount_label') @endif + @if($invoice->tax_per_item === 'YES') + @lang('pdf_tax_label') + @endif @lang('pdf_amount_label') @php @@ -54,6 +57,15 @@ @endif + @if($invoice->tax_per_item === 'YES') + + {!! format_money_pdf($item->tax, $invoice->user->currency) !!} + + @endif +