Product | Price | Quantity | Line Total |
---|---|---|---|
{{strlen($product['item']['name']) > 45 ? substr($product['item']['name'],0,45).'...' : $product['item']['name']}} | {{$order->currency_sign}}{{ round($product['item']['cprice'] * $order->currency_value , 2) }} | {{$product['qty']}} {{ $product['item']['measure'] }} | {{$order->currency_sign}}{{ round($product['price'] * $order->currency_value , 2) }} | @php $subtotal += round($product['price'] * $order->currency_value, 2); @endphp
Subtotal | {{$order->currency_sign}}{{ round($subtotal, 2) }} | ||
Shipping Cost({{$order->currency_sign}}) | {{ round($order->shipping_cost, 2) }} | ||
TAX({{$order->currency_sign}}) | @php $subtotal = $subtotal + $order->shipping_cost; $tax = ($subtotal / 100) * $order->tax; @endphp{{round($tax, 2)}} | ||
Coupon Discount({{$order->currency_sign}}) | {{round($order->coupon_discount, 2)}} | ||
Total | {{$order->currency_sign}}{{ round($order->pay_amount * $order->currency_value , 2) }} |
Order Details
@if($order->dp == 0)Shipping Method: @if($order->shipping == "pickup") Pick Up @else Ship To Address @endif
@endifPayment Method: {{$order->method}}
Shipping Address
{{$order->shipping_name == null ? $order->customer_name : $order->shipping_name}}
{{$order->shipping_address == null ? $order->customer_address : $order->shipping_address}}