家政小程序
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.

1234567891011121314151617181920
  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. 'status', // 产品状态, 上架/下架
  16. ];
  17. }