26 lines
678 B
PHP
26 lines
678 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 [
|
|
'product_total' => 'Product Total',
|
|
'customer_view' => 'Customer View',
|
|
'order_total' => 'Order Total',
|
|
'customer_new' => 'Customer New',
|
|
'order_amount' => 'Order Amount',
|
|
'yesterday' => 'Yesterday',
|
|
'day_before' => 'Last day',
|
|
|
|
'order_report' => 'Order Report',
|
|
'latest_month' => 'Latest Month',
|
|
'latest_week' => 'Latest Week',
|
|
'latest_year' => 'Latest Year',
|
|
];
|