26 lines
723 B
PHP
26 lines
723 B
PHP
<?php
|
|
/**
|
|
* order.php
|
|
*
|
|
* @copyright 2022 tuikehome.com - All Rights Reserved
|
|
* @link https://www.tuikehome.com
|
|
* @author Edward Yang <service@tuikehome.com>
|
|
* @created 2022-08-02 14:22:41
|
|
* @modified 2022-08-02 14:22:41
|
|
*/
|
|
|
|
return [
|
|
'product_total' => 'Quantity total',// Product Total
|
|
'customer_view' => 'Kunjungan pengguna',
|
|
'order_total' => 'Volume pesanan',
|
|
'customer_new' => 'Tambahkan Pengguna',
|
|
'order_amount' => 'Penjualan',
|
|
'yesterday' => 'Kemarin',
|
|
'day_before' => 'dari hari sebelumnya',
|
|
|
|
'order_report' => 'Statistik Pesanan',
|
|
'latest_month' => 'Satu bulan',
|
|
'latest_week' => 'Satu minggu',
|
|
'latest_year' => 'Satu tahun',
|
|
];
|