DEV Community

Tutsmake
Tutsmake

Posted on

Laravel 10 Get Latest Record From Database

Laravel 10 Get Latest Record From Database

You can use the latest() method in Laravel to get the latest records from a database. The latest() method was introduced in Laravel version 5.3. It uses the created_at column to sort the data.

*Here are some examples of using the latest() method:
*

$lastRecord = User::latest()->first()
return DB::table('files')->latest('upload_time')->first()
Enter fullscreen mode Exit fullscreen mode

Read More Laravel 10 Get Latest Record From Database

Top comments (0)