@extends('layouts.vendor') @section('content')
Product | Size | Color | Price | Quantity | Line Total |
---|---|---|---|---|---|
{{strlen($product['item']['name']) > 30 ? substr($product['item']['name'],0,30).'...' : $product['item']['name']}} | {{$product['size']}} | {{$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($user->shipping_cost * $order->currency_value , 2) }} | ||||
TAX({{$order->currency_sign}}) | @php $tax = ($subtotal / 100) * $order->tax; $subtotal = $subtotal + $tax; @endphp{{round($tax,2)}} | ||||
Total | {{$order->currency_sign}}{{ round($subtotal, 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}}