@extends(Theme::getThemeNamespace() . '::views.ecommerce.customers.master') @section('content')
{{ __('ID number') }} | {{ __('Date') }} | {{ __('Total') }} | {{ __('Status') }} | {{ __('Actions') }} |
---|---|---|---|---|
{{ get_order_code($order->id) }} | {{ $order->created_at->format('Y/m/d h:m') }} | {{ __(':price for :total item(s)', ['price' => $order->amount_format, 'total' => $order->products_count]) }} | {{ $order->status->label() }} | {{ __('View') }} |
{{ __('No orders found!') }} |