@switch($type)
@case($type == 'store_id')
@else
{{ strtoupper(substr($store->title, 0, 1)) }}
@endif
| {{ __('Product') }} | {{ __('Waybill') }} | {{ __('SALE STATUS') }} | {{ __('Qty') }} | {{ __('Unit Price') }} | {{ __('Shipping Type') }} | {{ __('Shipping Price') }} | {{ __('Total') }} | ||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
{{ __('Product') }} {{ $key + 1 }}
{{ $product->product?->getTranslation('title',app()->getLocale()) }}
|
@if ($product->shipping_data && $product->shipping_pdf_url) @else — @endif | @if($product->store?->sale_status == '1') {{ __('New') }} @else {{ __('Used') }} @endif | {{ $product->qty }} | {{ $product->price }} |
@if($product->shipping_type == 1)
{{ __('Pickup') }} | @elseif($product->shipping_type == 2){{ __('Store Delivery') }} | @else{{ __('Company') }} ({{ $product->shippingCompany?->title }}) |
@endif
@if($product->shipping_type == 1)
0 | @elseif($product->shipping_type == 2){{ $product->shipping_cost }} |
@else
{{ $product->shippingCompany?->shipping_costs }} |
@endif
{{ ($product->qty * $product->price) + $product->shipping_cost }} |
| {{ __('Subtotal') }} | {{ $order->subtotalByUser() }} |
||||||||||
| {{ __('Discount Amount') }} | {{ $order->discountByUser() }} |
||||||||||
| {{ __('Subtotal') }} | {{ $order->netSubtotalByUser() }} |
||||||||||
| {{ __('Subtotal + VAT(15%)') }} | {{ $order->totalWithVatByUser() }} |
||||||||||
| {{ __('VAT(15%)') }} | {{ $order->vatAmountByUser() }} |
||||||||||
| {{ __('Company Shipping Cost') }} | {{ $order->shippingCostByUser() }} |
||||||||||
| {{ __('Commission') }} ({{ $order->commissionTextByUser() }}) | {{ $order->commissionByUser() }} |
||||||||||
| {{ __('Grand Total') }} | {{ $order->grandTotalByUser() }} |
||||||||||
| {{ __('Product') }} | {{ __('Shipping Status') }} |
|---|---|
|
{{ __('Product') }} {{ $key + 1 }}
{{ $product->product?->getTranslation('title',app()->getLocale()) }}
|