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