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

ProductOrder.php 490B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * 产品信息
  6. */
  7. class ProductOrder extends Model
  8. {
  9. protected $fillable = [
  10. 'product_id', // 产品名称
  11. 'product_name', // 产品信息
  12. 'unit', // 产品单格
  13. 'amount', // 产品数量
  14. 'price', // 订单总价
  15. 'status', // 订单状态
  16. 'remark', // 买家备注
  17. 'info', // 卖家信息
  18. 'contact', // 买家联系人
  19. 'address', // 买家地址
  20. 'phone', // 买家手机号码
  21. ];
  22. }