@if(app('company')['show_tax_number_on_invoice'] && !empty($model->party->tax_number))
@if(app('company')['tax_type'] == 'gst')
@if(isset($isPOSInvoice) && $isPOSInvoice)
{{ __('tax.gst') }}: {{ $model->party->tax_number }}
@else
{{ __('tax.gst_number') }}: {{ $model->party->tax_number }}
@endif
@else
@if(isset($isPOSInvoice) && $isPOSInvoice)
{{ __('tax.tax') }}: {{ $model->party->tax_number }}
@else
{{ __('tax.tax_number') }}: {{ $model->party->tax_number }}
@endif
@endif
@endif