| {{ __('admin::app.quotes.bill-to') }} | @if ($quote->shipping_address){{ __('admin::app.quotes.ship-to') }} | @endif
|---|---|
|
{{ $quote->billing_address['address'] }} {{ $quote->billing_address['postcode'] . ' ' .$quote->billing_address['city'] }} {{ $quote->billing_address['state'] }} {{ core()->country_name($quote->billing_address['country']) }} |
@endif
@if ($quote->shipping_address)
{{ $quote->shipping_address['address'] }} {{ $quote->shipping_address['postcode'] . ' ' .$quote->shipping_address['city'] }} {{ $quote->shipping_address['state'] }} {{ core()->country_name($quote->shipping_address['country']) }} |
@endif
| {{ __('admin::app.quotes.sku') }} | {{ __('admin::app.quotes.product-name') }} | {{ __('admin::app.quotes.price') }} | {{ __('admin::app.quotes.quantity') }} | {{ __('admin::app.quotes.amount') }} | {{ __('admin::app.quotes.discount') }} | {{ __('admin::app.quotes.tax') }} | {{ __('admin::app.quotes.grand-total') }} |
|---|---|---|---|---|---|---|---|
| {{ $item->sku }} | {{ $item->name }} | {!! core()->formatBasePrice($item->price, true) !!} | {{ $item->quantity }} | {!! core()->formatBasePrice($item->total, true) !!} | {!! core()->formatBasePrice($item->discount_amount, true) !!} | {!! core()->formatBasePrice($item->tax_amount, true) !!} | {!! core()->formatBasePrice($item->total + $item->tax_amount - $item->discount_amount, true) !!} |
| {{ __('admin::app.quotes.sub-total') }} | - | {!! core()->formatBasePrice($quote->sub_total, true) !!} |
| {{ __('admin::app.quotes.tax') }} | - | {!! core()->formatBasePrice($quote->tax_amount, true) !!} |
| {{ __('admin::app.quotes.discount') }} | - | {!! core()->formatBasePrice($quote->discount_amount, true) !!} |
| {{ __('admin::app.quotes.adjustment') }} | - | {!! core()->formatBasePrice($quote->adjustment_amount, true) !!} |
| {{ __('admin::app.quotes.grand-total') }} | - | {!! core()->formatBasePrice($quote->grand_total, true) !!} |