32 lines
907 B
PHP
32 lines
907 B
PHP
<?php
|
|
/**
|
|
* product.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 [
|
|
'name' => 'Nama',
|
|
'sku' => 'SKU',
|
|
'price' => 'Harga',
|
|
'origin_price' => 'Harga asli',
|
|
'cost_price' => 'harga biaya',
|
|
'brand' => 'merek',
|
|
'category' => 'klasifikasi',
|
|
'model' => 'Model',
|
|
'quantity' => 'inventaris',
|
|
'image' => 'Gambar',
|
|
'kg' => 'kg',
|
|
'g' => 'g',
|
|
'oz' => 'ons',
|
|
'lb' => 'pound',
|
|
|
|
'active' => 'di rak',
|
|
'inactive' => 'penghapusan',
|
|
'has_been_inactive' => 'Item telah dihapus',
|
|
];
|