25 lines
610 B
PHP
25 lines
610 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년',
|
|
];
|