Answers for "laravel get the last id in database model class query"

PHP
0

Get last id in laravel

$last3 = DB::table('items')->latest('id')->first();
Posted by: Guest on July-11-2020
1

get the last inserted Id using laravel eloquent

//if you have used save method like this
$data->save();
//use this to get last row id;
$lastRowId = $data->id;

//For other insert methods get last inserted id like below
    
    //Using create() method
    $book = Book::create(['name'=>'Laravel Warrior']);
    $lastId = $book->id;

    //Using insertGetId()
    $id = DB::table('books')->insertGetId( ['name' => 'Laravel warrior'] );   
    $lastId = $id;

    //Using lastInsertId() method
    $lastId = DB::getPdo()->lastInsertId();
Posted by: Guest on April-09-2022

Code answers related to "laravel get the last id in database model class query"

Browse Popular Code Answers by Language