@extends('user.layouts.app') @section('content')

Order Details - {{ $order->order_no }}

@foreach($order->orderItems as $item) @endforeach
Product Name Quantity Price Subtotal
{{ $item->product->Name }} {{ $item->product_qty }} {{ $item->product_per_price }} {{ $item->product_subtotal_price }}

Shipping Address: {{ $order->shipping_address }}

Sub Total: {{ $order->sub_total }}

Discount: {{ $order->discount }}

Tax : {{ $order->tax }}

Total Amount: {{ $order->total_amount }}

@endsection