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

HousekeeperOrder.php 387B

12345678910111213141516171819
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * 保姆订单
  6. */
  7. class HousekeeperOrder extends Model
  8. {
  9. protected $fillable = [
  10. 'wechat_id', // 微信号
  11. 'appliances', // 项目, 数组形式,多个数量则出现多次
  12. 'address', // 服务地址
  13. 'contact', // 联系人
  14. 'phone', //联系电话
  15. 'status']; // 订单状态
  16. }