php - Get the Last Inserted Id Using Laravel Eloquent - Stack Overflow

PHOTO EMBED

Mon Feb 20 2023 23:31:47 GMT+0000 (Coordinated Universal Time)

Saved by @mvieira

$id = DB::table('users')->insertGetId([
    'email' => 'john@example.com',
    'votes' => 0
]);
content_copyCOPY

https://stackoverflow.com/questions/21084833/get-the-last-inserted-id-using-laravel-eloquent