{{ settings()->company_name }}
{{ settings()->company_address }}
@if (settings()->show_email == true){{ __('Email') }}: {{ settings()->company_email }}
@endif{{ __('Phone') }}: {{ settings()->company_phone }}
{{ $customer->name }}
@if (settings()->show_address == true){{ $customer->address }}
@endif @if (settings()->show_email == true){{ __('Email') }}: {{ $customer->email }}
@endif{{ __('Phone') }}: {{ $customer->phone }}
{{ __('Invoice') }}: {{ $quotation->reference }}
{{ __('Date') }}: {{ format_date($quotation->date) }}
{{ __('Status') }}: {{ $quotation->status }}
{{ __('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) }} |
{{ __('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') }}