Laravel-在发布时将帖子ID插入另一个表

时间:2018-07-13 14:13:13

标签: php laravel

当我在Laravel中使用store方法发布帖子时,我想在此之后将发布帖子的ID插入到另一个表中。这怎么可能?

1 个答案:

答案 0 :(得分:0)

public function store(Request $request){
    $data = new Data;
    // Add other data
    $data->save();

    // Now you can get the last inserted id
    $last_id = $data->id;

    // Or 
    $last_id_2 = DB::getPdo()->lastInsertId();
    // For that, dont forget to add DB class

}