且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Laravel中不存在方法IlllightateSupportCollection::Save

更新时间:2021-07-14 22:47:57

急切加载:

$energy=VehicleLog::with(‘Vehicle’)->First();

  • 此变量从未在store()操作中使用:
$cars = Vehicle::all();
$staff = Staff::get();
  • 您可以使用fill()方法:
$energy->fill($request->only([
    'staff_key', 'vehicle_id', 'admin_time',
    'driving_time', 'work_time', // ...
]));