28 lines
627 B
PHP
28 lines
627 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' => '名稱',
|
|
'sku' => 'SKU',
|
|
'price' => '價格',
|
|
'origin_price' => '原價',
|
|
'cost_price' => '成本價',
|
|
'brand' => '品牌',
|
|
'category' => '分類',
|
|
'model' => '型號',
|
|
'quantity' => '庫存',
|
|
'image' => '圖片',
|
|
|
|
'active' => '上架',
|
|
'inactive' => '下架',
|
|
'has_been_inactive' => '該商品已下架',
|
|
];
|