ItSolutionStuff.com

How to Get Last Inserted Id in Laravel 10?

By Hardik Savani • April 20, 2024
Laravel

Hey Artisan,

This extensive guide will teach you laravel 10 get last inserted id. I would like to share with you laravel 10 get inserted id. I’m going to show you about laravel 10 get created model id. We will look at an example of how to get last inserted record id in laravel 10. Let's get started with how to get last created record id in laravel 10.

In this example, I will give you two ways to get the last inserted id in laravel eloquent. We will use create() and insertGetId() functions to get the last inserted id. so, let's take a look at both examples and work with them.

Example 1:

Let's see the controller code below:

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use App\Models\User;

class UserController extends Controller

{

/**

* Display a listing of the resource.

*

* @return \Illuminate\Http\Response

*/

public function index(Request $request)

{

$create = User::create([

'name' => 'Hardik Savani',

'email' => 'hardik@gmail.com',

'password' => '123456'

]);

$lastInsertID = $create->id;

dd($lastInsertID);

}

}

Example 2:

Let's see controller code as below:

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use DB;

class UserController extends Controller

{

/**

* Display a listing of the resource.

*

* @return \Illuminate\Http\Response

*/

public function index(Request $request)

{

$lastInsertID = DB::table('users')->insertGetId([

'name' => 'Hardik Savani',

'email' => 'hardik@gmail.com',

'password' => '123456'

]);

dd($lastInsertID);

}

}

I hope it can help you...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

šŸ“ŗ Subscribe on YouTube

We Are Recommending You

ā˜…

How to Get Current Full URL in Laravel 10?

Read Now →
ā˜…

Laravel 10 Many to Many Eloquent Relationship Tutorial

Read Now →
ā˜…

Laravel 10 Socialite Login with Google Account Example

Read Now →
ā˜…

How to Generate QR Code in Laravel 10?

Read Now →
ā˜…

How to Create Custom Error Page in Laravel 10?

Read Now →
ā˜…

Laravel 10 Ajax CRUD Tutorial Example

Read Now →
ā˜…

How to Generate Barcode in Laravel 10?

Read Now →
ā˜…

Laravel 10 Get Current Logged in User Data Example

Read Now →
ā˜…

Laravel 10 Select2 Ajax Autocomplete Search Example

Read Now →
ā˜…

Laravel 10 Guzzle Http Request Example

Read Now →
ā˜…

Laravel 10 Auth with Livewire Jetstream Example

Read Now →
ā˜…

Laravel 10 Bootstrap Auth Scaffolding Tutorial

Read Now →
ā˜…

Laravel 10 Generate PDF File using DomPDF Example

Read Now →
ā˜…

Laravel 10 File Upload Example Tutorial

Read Now →