@extends(Theme::getThemeNamespace() . '::views.ecommerce.customers.master') @section('content') @php Theme::set('pageName', __('Orders')) @endphp
| {{ __('ID number') }} | {{ __('Date') }} | {{ __('Total') }} | {{ __('Status') }} | {{ __('Actions') }} |
|---|---|---|---|---|
| {{ get_order_code($order->id) }} | {{ $order->created_at->translatedFormat('M d, Y h:m') }} | {{ format_price($order->amount) }} | {!! $order->status->toHtml() !!} | {{ __('View') }} |
| {{ __('No orders!') }} | ||||