28 lines
669 B
PHP
28 lines
669 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' => 'この商品は販売を終了しました',
|
|
];
|