2
我是Laravel新手。 如何獲取最後插入的ID在Laravel模型窗體中。獲取最近一次插入的ID在Laravel 4
當創建一個新項目自動顯示從數據庫
上次插入ID + 1項目代碼;
{{ Form::text('project_code', Input::old('name'), array('class' => 'form-control','disabled')) }}
我是Laravel新手。 如何獲取最後插入的ID在Laravel模型窗體中。獲取最近一次插入的ID在Laravel 4
當創建一個新項目自動顯示從數據庫
上次插入ID + 1項目代碼;
{{ Form::text('project_code', Input::old('name'), array('class' => 'form-control','disabled')) }}
我們需要看到你的代碼可以肯定的,但如果你用雄辯的,那麼當你將其插入使用$model->save()
數據庫,然後$model->id
應該有插入的ID。
所以
$model = new Model();
$model->field = $var;
$model->field = $var;
$model->field = $var;
$model->save();
$insert_id = $model->id;
的
可能重複[Laravel,獲得使用雄辯最後插入ID(http://stackoverflow.com/questions/21084833/laravel-get-last-insert-id-using-eloquent ) –