laravel创建数据库并获取ID

时间:2014-06-17 19:20:05

标签: php laravel laravel-4

这是我的代码

        $input = Input::all();
Admin::create(Input::only('username', 'password', 'mobileNumber', 'firstName', 'lastName'));

如何获取ID或新创建的admin raw?

非常感谢

1 个答案:

答案 0 :(得分:3)

Model::create()方法返回模型的一个实例,所以这样的东西应该起作用:

$model = Admin::create(...); // create the model

$id = $model->id; // gets the `id` attribute from the model