@extends('layouts.customer') @section('title') My Orders @endsection @section('content')
Back

My Orders

{{$order->fname}}
{{$order->lname}}
{{$order->email}}
{{$order->phoneno}}
{{$order->address1}}
{{$order->address2}}
{{$order->city}}
{{$order->state}}
{{$order->country}}
{{$order->pincode}}
@foreach ($order->orderItems as $item) @endforeach
Name Qunatity Price Image
{{$item->products->name}} {{$item->qty}} {{$item->price}}

Grand Total : RS {{ $order->total_price }}

@endsection