@extends('user-layouts.user_template') @section('content')

Store Order

Store Order List

@foreach($array_store_orders as $item_order) @endforeach
Invoice No. Product Name Price Quantity # Date Ordered Action
{{ $item_order->InvoiceNumber }} {{ $item_order->ProductName }} {{ $item_order->Price . ' ' . $item_order->Currency }} {{ $item_order->Quantity }} {{ date('Y/m/d', strtotime($item_order->DateCreated)) }} {{ date('F j, Y g:i a', strtotime($item_order->DateCreated)) }} View Details
@endsection