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

123456789101112131415161718
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * 产品信息
  6. */
  7. class Product extends Model
  8. {
  9. protected $fillable = [
  10. 'name', // 产品名称
  11. 'info', // 产品信息
  12. 'price', // 产品价格
  13. 'status', // 产品状态, 上架/下架
  14. ];
  15. }