@extends('layout.client') @section('contentstyle') @endsection @section('content')
My Orders
@foreach ($orders as $order) @endforeach
# Name Unit Price Quantity Status
{{ $loop->iteration }} {{ $order->productdetails->product->name }} ₹{{ $order->productdetails->offerprize }} {{ $order->quantity }} * {{ $order->productdetails->size }} {{ $order->status }}
@endsection