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()}} | |
| @php $shipping_charge=DB::table('shippings')->where('id',$order->shipping_id)->pluck('price'); @endphp | Shipping: | ${{number_format($shipping_charge[0],2)}} |
| Total: | ${{number_format($order->total_amount,2)}} |