@extends('layouts.app') @section('title','Profile') @section('content')
@if(!$orders->isEmpty()) @foreach($orders as $order) @foreach(\GuzzleHttp\json_decode($order->cart,true) as $item) @endforeach
Order # {{$order->id}}
Placed {{$order->created_at->toDateString()}}
SKU DESCRIPTION QTY PRICE SUBTOTAL
{{$item['options']['sku']}} {{$item['name']}} {{$item['qty']}} $ {{$item['price']}} $ {{$item['subtotal']}}
TOTAL $ {{$order->total}}
@endforeach @else
You do not have an order yet.
@endif
@endsection