Laravel : Get last insert ID using Eloquent
$user = new Model(User); $user->name = "John"; $user->age = "28"; $user->save(); //Get last inserted id $lastInsertedId = $user->id
Get Last Inserted ID With Example
Please log in to report spam or off-topic articles. This helps us prevent report abuse and keep the engineering community clean.