@extends('account_layout') @section('account_content')
@if(Session::has('errors'))
@endif
Order List
@if(count($_order) > 0) @foreach($_order as $order) @if($order->tracking_no) @else @endif @endforeach @else @endif
No. Order Date Amount Shipping Status Payment Status Tracking Button
ORD{{ $order->ec_order_id }} {{ date("m/d/y", strtotime($order->created_date)) }} P {{ number_format($order->total, 2) }} {{ $order->order_status }} {{ $order->payment_status == 1 ? "Paid" : "Unpaid" }}
None @if($order->payment_status == 1) Invoice @endif @if($order->order_status == "Pending") Cancel @endif
No Orders
@endsection @section('css') @endsection @section('script') @endsection