{{__('Customer Info')}} |
---|
{{ __('Name') }}: {{ $quotation->customer->name }}
{{ __('Tax number') }}: {{ $quotation->customer?->tax_number }}
{{ __('Phone') }}: {{ $quotation->customer->phone }}
{{ __('Address') }}: {{ $quotation->customer->address }}
{{ __('Email') }}: {{ $quotation->customer->email }}
|
{{__('Company Info')}} |
---|
{{ settings()->company_name }}
{{ __('ICE') }}: {{ settings()->company_tax }}
{{ __('Address') }}: {{ settings()->company_address }}
{{ __('Phone') }}: {{ settings()->company_phone }}
{{ __('Email') }}: {{ settings()->company_email }}
|
PODUIT | PRIX UNITAIRE | QUANTITE | REMISE | TAXE | TOTAL |
---|---|---|---|---|---|
{{$detail->code}} ({{$detail->name}}) | {{$detail->unit_price }} | {{$detail->quantity }} | {{$detail->discount }} | {{$detail->tax }} | {{$detail->total_amount }} |
Taxe de commande | {{$quotation->TaxNet }} |
Remise | {{$quotation->discount }} |
Livraison | {{$quotation->shipping }} |
{{__('Total')}} | {{$symbol}} {{$quotation->GrandTotal }} |
@if (settings()->invoice_footer_text)
{{ settings()->invoice_footer_text }}
@endif