@extends('website.layout.master') @section('title') @endsection @section('content')

My Account

Order History

@foreach($myorders as $md) @php $products=json_decode($md->products_id); @endphp @endforeach
ORDER ORDER ID DATE TOTAL
@foreach($products as $pd) @endforeach
Product ID Name Quantity Price Subtotal
{{ $pd->productid }} {{ $pd->name }} {{ $pd->quantity }} {{ $pd->price }} {{ $pd->price*$pd->quantity }}
{{ $md->id }} {{ $md->created_at }} {{ $md->subtotal }}
@endsection