@extends(EcommerceHelper::viewPath('customers.master')) @section('content')

{{ __('Orders') }}

@foreach ($orders as $order) @endforeach
{{ __('Order number') }} {{ __('Created at') }} {{ __('Payment method') }} {{ __('Status') }}
#{{ config('plugins.ecommerce.order.order_code_prefix') }}{{ $order->id }} {{ $order->created_at->format('h:m d/m/Y') }} {{ is_plugin_active('payment') ? $order->payment->payment_channel->label() : '-' }} {{ $order->status->label() }} {{ __('View') }}
{!! $orders->links() !!}
@endsection