{{-- resources/views/customer/dashboard.blade.php --}} @extends(EcommerceHelper::viewPath('customers.master')) @section('title', __('Dashboard')) @section('content') {{-- ------------------------------------------------- 1. GLOBAL NEW DESIGN CSS (once, at the top) ------------------------------------------------- --}} {{-- ------------------------------------------------- 2. PAGE HEADER (new design) ------------------------------------------------- --}}
{{ __('View Orders') }}
Track your recent orders and order history
Browse Products
{{ __("Explore our product collection and start shopping") }}
No announcements at this time.
| {{ __('Order #') }} | {{ __('Date') }} | {{ __('Order Status') }} | {{ __('Payment Status') }} | {{ __('Amount') }} | {{ __('Payment Method') }} | {{ __('Items') }} | {{ __('Action') }} |
|---|---|---|---|---|---|---|---|
| {{ $order->code }} | {{ $order->created_at->format('d M Y') }} | {!! BaseHelper::clean($order->status->toHtml()) !!} | {{ $paymentText }} | {{ format_price($order->sub_total, null, false, true) }} | @if (is_plugin_active('payment') && $order->payment && $order->payment->payment_channel) {{ $order->payment->payment_channel->label() }} @else {{ __('Not specified') }} @endif | {{ $order->products_count }} {{ __('item(s)') }} | {{ __('View') }} |