@extends('front.layout.layout') @section('content')

My Orders

@foreach($orders as $order) @endforeach
Order ID Ordered Products Payment Method Grand Total Created on
{{$order['id']}} @foreach($order['orders_products'] as $product) {{ $product['product_code'] }}
@endforeach
{{$order['payment_method']}} {{$order['grand_total']}} {{ date('Y-m-d h:i:s', strtotime($order['created_at'])); }}
@endsection