@extends('website.layout.master') @section('title') @endsection @section('content') My Account Home My Account Order History ORDER ORDER ID DATE TOTAL @foreach($myorders as $md) @php $products=json_decode($md->products_id); @endphp 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 @endsection