@extends('admin::layouts.master') @section('title', __('admin/order.list')) @section('content')
| {{ __('order.id') }} | {{ __('order.number') }} | {{ __('order.customer_name') }} | {{ __('order.payment_method') }} | {{ __('order.status') }} | {{ __('order.total') }} | {{ __('order.created_at') }} | {{ __('order.updated_at') }} | {{ __('common.action') }} |
|---|---|---|---|---|---|---|---|---|
| {{ $order->id }} | {{ $order->number }} | {{ sub_string($order->customer_name, 14) }} | {{ $order->payment_method_name }} | {{ $order->status_format }} | {{ $order->total_format }} | {{ $order->created_at }} | {{ $order->updated_at }} | 查看 |