28 lines
799 B
PHP
28 lines
799 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' => 'nom',
|
|
'sku' => 'UGS',
|
|
'price' => 'le prix',
|
|
'origin_price' => 'prix d\'origine',
|
|
'cost_price' => 'prix de revient',
|
|
'brand' => 'marque',
|
|
'category' => 'Classification',
|
|
'model' => 'maquette',
|
|
'quantity' => 'en stock',
|
|
'image' => 'image',
|
|
|
|
'active' => 'sur l\'étagère',
|
|
'inactive' => 'descendre',
|
|
'has_been_inactive' => 'Cet article a été arrêté',
|
|
];
|