任何人都请分享您的宝贵信息。 在我的模块页面中 我需要插入模块名称,模块成本,最后日期和文档。 这里,模块名,模块成本和最后日期应插入到名为模块细节的表中。而文档应插入到另一个具有第一个表的lastinsert ID的表中,该模块称为moduledocs。 如何实现这一目标,请分享您的答案。
答案 0 :(得分:0)
当你做这样的事情
$post = new Post;
$post->title = 'test';
$post->save(); // if success, will return the inserted model, in case inserted to as id: 9
// after save(), you can get the inserted model
dd($post->id); // return 9
dd($post->title) // return test