19 lines
468 B
PHP
19 lines
468 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 [
|
|
'customers_index' => '客户列表',
|
|
'customers_create' => '创建客户',
|
|
'customers_show' => '客户详情',
|
|
'customers_update' => '更新客户',
|
|
'customers_delete' => '删除客户',
|
|
];
|