家政小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Product.php 562B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * Class Product
  6. * @package App\Models
  7. * 产品信息
  8. */
  9. class Product extends Model
  10. {
  11. protected $fillable = [
  12. 'name', // 产品名称
  13. 'info', // 产品信息
  14. 'price', // 产品价格
  15. 'classify', // 产品分类
  16. 'color', // 产品颜色款色
  17. 'collect_num', // 收藏数
  18. 'sell_num', // 销量
  19. 'status', // 产品状态, 上架/下架
  20. 'photo', // 产品图片
  21. 'show', // 产品轮播首页是否显示,boolean
  22. ];
  23. }