25 lines
622 B
PHP
25 lines
622 B
PHP
<?php
|
|
/**
|
|
* order.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-08-02 14:22:41
|
|
* @modified 2022-08-02 14:22:41
|
|
*/
|
|
|
|
return [
|
|
'customer_view' => 'ユーザーの訪問',
|
|
'order_total' => '注文金額',
|
|
'customer_new' => 'ユーザーを追加',
|
|
'order_amount' => '売上',
|
|
'yesterday' => '昨日',
|
|
'day_before' => '前日',
|
|
|
|
'order_report' => '注文統計',
|
|
'latest_month' => '月',
|
|
'latest_week' => '週',
|
|
'latest_year' => '1 年',
|
|
];
|