获取最后保存的条目的 id

Get the id of the last saved entry

保存只给出真或假。

$query = (new Item())->fill([
    'first'=>$first,
    'second'=>$second
])->save();
$lastInsertId = $query->id;
//does not work...
return ['status'=>true];

改用create函数。

$item = Item::create([
    'first' => $first,
    'second' => $second
]);

$id = $item->id;