update()
phương thức không trả về một đối tượng, vì vậy bạn có hai tùy chọn:
Tùy chọn 1
Sử dụng updateOrCreate()
:
$user = User::updateOrCreate(['fbID' => $x['id']], $dataArray);
$id = $user->id;
Tùy chọn 2
Nhận một đối tượng và cập nhật nó:
$user = User::where('fbID', '=', $x['id'])->first();
$user->update($dataArray);
$id = $user->id;