@extends(Theme::getThemeNamespace() . '::views.ecommerce.customers.master') @section('content')
{{ __('Your Orders') }}
@forelse ($orders as $order) @empty @endforelse
{{ __('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!') }}
{!! $orders->links(Theme::getThemeNamespace() . '::partials.custom-pagination') !!}
@endsection