{{ __('Supplier Info') }} |
---|
{{ __('Name') }}: {{ $return_purchase->supplier->name }}
{{ __('Tax number') }}:
{{ $return_purchase->supplier?->tax_number }}
{{ __('Phone') }}: {{ $return_purchase->supplier->phone }}
{{ __('Address') }}: {{ $return_purchase->supplier->address }}
{{ __('Email') }}: {{ $return_purchase->supplier->email }}
|
{{ __('Company Info') }} |
---|
{{ settings()->company_name }}
{{ __('Tax number') }} {{ settings()->company_tax }}
{{ __('Address') }}: {{ settings()->company_address }}
{{ __('Phone') }}: {{ settings()->company_phone }}
{{ __('Email') }}: {{ settings()->company_email }}
|
{{ __('PRODUCT') }} | {{ __('UNIT COST') }} | {{ __('QUANTITY') }} | {{ __('DISCOUNT') }} | {{ __('TAX') }} | {{ __('TOTAL') }} |
---|---|---|---|---|---|
{{ $detail->code }} ({{ $detail->name }}) | {{ $detail->cost }} | {{ $detail->quantity }}/{{ $detail->unit }} | {{ $detail->discount }} | {{ $detail->tax }} | {{ $detail->total_amount }} |
{{ __('Tax') }} | {{ $return_purchase->tax }} |
{{ __('Discount') }} | {{ $return_purchase->discount }} |
{{ __('Shipping') }} | {{ $return_purchase->shipping }} |
{{ __('Total') }} | {{ $return_purchase->total }} |
{{ __('Paid amount') }} | {{ $return_purchase->paid_amount }} |
{{ __('Due amount') }} | {{ $return_purchase->due_amount }} |
@if (settings()->is_invoice_footer !== null)
{{ __('Thank you for your business') }}
@endif