26 lines
723 B
PHP
26 lines
723 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' => 'Quantity total',// Product Total
|
|
'customer_view' => 'Visitas de usuarios',
|
|
'order_total' => 'Volumen de pedidos',
|
|
'customer_new' => 'Usuarios nuevos',
|
|
'order_amount' => 'Ventas',
|
|
'yesterday' => 'el dia de ayer',
|
|
'day_before' => 'que el día anterior',
|
|
|
|
'order_report' => 'Estadísticas de pedidos',
|
|
'latest_month' => 'un mes',
|
|
'latest_week' => 'una semana',
|
|
'latest_year' => 'un año',
|
|
];
|