Foodie Food
Home
About
Contact Us
My Orders History
No.
ORDER
ORDER ID
DATE
TOTAL
@foreach($myorders as $md) @php $products=json_decode($md->products_id); @endphp
{{ $count++ }}
Product ID
Name
Quantity
Price
Subtotal
@foreach($products as $pd)
{{ $pd->productid }}
{{ $pd->name }}
{{ $pd->quantity }}
{{ $pd->price }}
{{ $pd->price*$pd->quantity }}
@endforeach
{{ $md->id }}
{{ $md->created_at }}
{{ $md->subtotal }}
@endforeach