how to get last inserted id in laravel 6

Today, We want to share with you how to get last inserted id in laravel 6?.In this post we will show you How to get last inserted id in Laravel 7.x and 6.x?, hear for Laravel 5/6/7 Get last inserted id using save(), create() and insertGetId() we will give you demo and example for implement.In this post, we will learn about laravel get last inserted id after save with an example.

how to get last inserted id in laravel 6?

There are the Following The simple About Get the Last Inserted Id Using Laravel Eloquent Full Information With Example and source code.

As I will cover this Post with live Working example to develop laravel get last insert id after create, so the get last inserted id laravel query builder is used for this example is following below.

Retrieve last insert id by Eloquent in Laravel 6

we can interact with the database using query builder as well as Eloquent ORM.

Example 1:

    public function getLastInsertedId()
    {
        $Doctor_id = DB::table('doctors')->insertGetId(
                ['email' => '[email protected]', 'name' => 'Rahul Koyani']
        );

        dd($Doctor_id);
    }

Example 2:

    public function getLastInsertedId()
    {
        $Doctors = Doctor::create(['name'=>'Rahul Koyani' , 'email'=>'[email protected]']);
        dd($Doctors->id);
    }

Last inserted record Id

using Laravel’s Query builder

 $customerID = DB::table('customers')->insertGetId(
           ['email' => '[email protected]', 'name' => 'Surbhi A']
        );
 print_r($customerID );

using Laravel’s Eloquent ORM

$customer = Customer::create(['email' => '[email protected]', 'name' => 'Surbhi A']);
print_r($customer->id);
Web Programming Tutorials Example with Demo

Read :

Summary

You can also read about AngularJS, ASP.NET, VueJs, PHP.

I hope you get an idea about get last updated id in laravel.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

Leave a Comment