28 lines
645 B
PHP
28 lines
645 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',
|
|
'image' => 'Image',
|
|
|
|
'active' => 'Active',
|
|
'inactive' => 'Inactive',
|
|
'has_been_inactive' => 'The product has been inactive',
|
|
];
|