Logo

{{ __('Reference') }}: {{ $quotation->reference }}


{{ __('Company Info') }}:

{{ settings()->company_name }}

{{ settings()->company_address }}

@if (settings()->show_email == true)

{{ __('Email') }}: {{ settings()->company_email }}

@endif

{{ __('Phone') }}: {{ settings()->company_phone }}

{{ __('Customer Info') }}:

{{ $customer->name }}

@if (settings()->show_address == true)

{{ $customer->address }}

@endif @if (settings()->show_email == true)

{{ __('Email') }}: {{ $customer->email }}

@endif

{{ __('Phone') }}: {{ $customer->phone }}

{{ __('Invoice Info') }}:

{{ __('Invoice') }}: {{ $quotation->reference }}

{{ __('Date') }}: {{ format_date($quotation->date) }}

{{ __('Status') }}: {{ $quotation->status }}

@foreach ($quotation->quotationDetails as $item) @endforeach
{{ __('Product') }} {{ __('Net Unit Price') }} {{ __('Quantity') }} {{ __('Discount') }} {{ __('Tax') }} {{ __('Sub Total') }}
{{ $item->name }}
{{ $item->code }}
{{ format_currency($item->unit_price) }} {{ $item->quantity }} {{ format_currency($item->product_discount_amount) }} {{ format_currency($item->product_tax_amount) }} {{ format_currency($item->sub_total) }}
@if ($quotation->discount_percentage) @endif @if ($quotation->tax_percentage) @endif @if (settings()->show_shipping == true) @endif
{{ __('Discount') }} ({{ $quotation->discount_percentage }}%) {{ format_currency($quotation->discount_amount) }}
{{ __('Tax') }} ({{ $quotation->tax_percentage }}%) {{ format_currency($quotation->tax_amount) }}
{{ __('Shipping') }} {{ format_currency($quotation->shipping_amount) }}
{{ __('Grand Total') }} {{ format_currency($quotation->total_amount) }}

{{ settings()->company_name }} © {{ date('Y') }}