我正在backpack
中将laravel 4.*
用作CrudController
,我需要获取Item ID
进行保存,然后根据该表在另一个表中创建一个新寄存器。
重点是获取新ID,我该如何获取?谢谢
这是您的操作方式。
$user = User::create([
'first_name' => $request['first_name'],
'last_name' => $request['last_name'],
]);
$userID = $user->id; // It will save the id of the last user registered ID. Then you can anything want with it.
让我知道它会有所帮助。谢谢