{{ __('Date') }}: {{ $purchase->date }}
{{ __('Number') }}: {{ $purchase->reference }}
{{ __('Purchase') }} : {{ $purchase->reference }}
{{ __('Supplier Info') }}
{{ __('Name') }}: {{ $purchase->supplier->name }}
{{ __('Tax number') }}: {{ $purchase->tax_number }}
{{ __('Phone') }}: {{ $purchase->phone }}
{{ 'Address' }}: {{ $purchase->adress }}
{{ __('Email') }}: {{ $purchase->email }}
{{ __('Company Info') }}
{{ settings()->company_name }}
{{ __('Tax number') }} {{ settings()->company_tax }}
{{ __('Address') }}: {{ settings()->company_address }}
{{ __('Phone') }}: {{ settings()->company_phone }}
{{ __('Email') }}: {{ settings()->company_email }}
@foreach ($details as $detail) @endforeach
{{ __('PRODUCT') }} {{ __('UNIT COST') }} {{ __('QUANTITY') }} {{ __('DISCOUNT') }} {{ __('TAX') }} {{ __('TOTAL') }}
{{ $detail->code }} ({{ $detail->name }}) {{ $detail->cost }} {{ $detail->quantity }}/{{ $detail->unit_purchase }} {{ $detail->discount }} {{ $detail->tax }} {{ $detail->total_amount }}
{{ __('Order Tax') }} {{ $purchase->tax_amount }}
{{ __('Discount') }} {{ $purchase->discount }}
{{ __('Shipping') }} {{ $purchase->shipping }}
{{ __('Total') }} {{ $purchase->total }}
{{ __('Paid Amount') }} {{ $purchase->paid_amount }}
{{ __('Due') }} {{ $purchase->due }}
@if (settings()->invoice_footer_text)

{{ settings()->invoice_footer_text }}

@endif