@extends('shop.layouts.app') @section('content')
@include('shop.customer.sidebar')

Orders # {{$order->id}}

Products Ordered
@if ($order->orderItems) @foreach ($order->orderItems as $item) @endforeach @endif
Name Price Item QTY Sub Total Tax Percent Tax Amount Grand Total
{{$item->product_name}} ₹{{$item->price}} {{$item->qty_ordered}} {{$item->sub_total}} {{$item->tax}} % ₹{{$item->tax_amount}} ₹{{$item->grand_total}}

Subtotal - ₹{{$order->sub_total}}
Shipping & Handling - ₹{{$order->shipping_amount}}
Tax - ₹{{$order->tax_amount}}
Grand Total - ₹{{$order->grand_total}}
Total Paid - ₹{{$order->grand_total }}

Name {{$order->address->first_name}}
Contact {{$order->address->phone}}
City {{$order->address->city}}
State {{$order->address->state}}
Pin Code {{$order->address->postal}}
Address {{$order->address->address}}
Comments {{$order->order_note}}

Shipping Meathod

{{$order->shipping_method}}

@endsection