29 lines
664 B
PHP
29 lines
664 B
PHP
<?php
|
|
/**
|
|
* order.php
|
|
*
|
|
* @copyright 2022 opencart.cn - All Rights Reserved
|
|
* @link http://www.guangdawangluo.com
|
|
* @author Edward Yang <yangjin@opencart.cn>
|
|
* @created 2022-08-02 14:22:41
|
|
* @modified 2022-08-02 14:22:41
|
|
*/
|
|
|
|
return [
|
|
'id' => 'ID',
|
|
'number' => 'Number',
|
|
'customer_name' => 'Customer Name',
|
|
'payment_method' => 'Payment Method',
|
|
'email' => 'Email',
|
|
'telephone' => 'Telephone',
|
|
'created_at' => 'Created',
|
|
'updated_at' => 'Updated',
|
|
'status' => 'Status',
|
|
'total' => 'Total',
|
|
|
|
'unpaid' => 'Unpaid',
|
|
'paid' => 'Paid',
|
|
'shipped' => 'Shipped',
|
|
'completed' => 'Completed',
|
|
];
|