这是我的代码
$input = Input::all();
Admin::create(Input::only('username', 'password', 'mobileNumber', 'firstName', 'lastName'));
如何获取ID或新创建的admin raw?
非常感谢答案 0 :(得分:3)
Model::create()
方法返回模型的一个实例,所以这样的东西应该起作用:
$model = Admin::create(...); // create the model
$id = $model->id; // gets the `id` attribute from the model