@extends(Theme::getThemeNamespace('views.ecommerce.customers.master')) @section('content')

{{ SeoHelper::getTitle() }}

@if (count($orders) > 0) @foreach ($orders as $order) @endforeach @else @endif
{{ __('ID number') }} {{ __('Date') }} {{ __('Total') }} {{ __('Status') }} {{ __('Actions') }}
{{ get_order_code($order->id) }} {{ $order->created_at->translatedFormat('M d, Y h:m') }} {{ format_price($order->amount) }} {!! BaseHelper::clean($order->status->toHtml()) !!} {{ __('View') }}
{{ __('No orders!') }}
@endsection