32 lines
916 B
PHP
32 lines
916 B
PHP
<?php
|
|
/**
|
|
* product.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 [
|
|
'name' => 'Name',
|
|
'sku' => 'SKU',
|
|
'price' => 'Price',
|
|
'origin_price' => 'Origin Price',
|
|
'cost_price' => 'Cost Price',
|
|
'brand' => 'Brand',
|
|
'category' => 'Category',
|
|
'model' => 'Model',
|
|
'quantity' => 'Quantity',
|
|
'kg' => 'Kilogram',
|
|
'g' => 'Gram',
|
|
'oz' => 'Ounce',
|
|
'lb' => 'Pound',
|
|
'video' => 'Video',
|
|
|
|
'active' => 'Active',
|
|
'inactive' => 'Inactive',
|
|
'has_been_inactive' => 'The product has been inactive',
|
|
];
|