Country: {{$order->country}}
Address: {{ $order->address1 }} OR {{ $order->address2}}
Phone: {{ $order->phone }}
Email: {{ $order->email }}
{{ $order->created_at->format('D d m Y') }}
{{--Product | Quantity | Total |
---|---|---|
@foreach($product as $pro) {{$pro->title}} @endforeach | x{{$cart->quantity}} | ${{number_format($cart->price,2)}} |
Subtotal: | ${{number_format($order->sub_total,2)}} | |
Discount: | -{{$order->coupon->discount(Helper::orderPrice($order->id, $order->user->id))}}{{Helper::base_currency()}} | |
Shipping: | ${{number_format($order->delivery_charge,2)}} | |
Total: | ${{number_format($order->total_amount,2)}} |