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)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Discover a treasure trove of wisdom within this insightful piece, highly respected in the nurturing DEV Community enviroment. Developers, whether novice or expert, are encouraged to participate and add to our shared knowledge basin.

A simple "thank you" can illuminate someone's day. Express your appreciation in the comments section!

On DEV, sharing ideas smoothens our journey and strengthens our community ties. Learn something useful? Offering a quick thanks to the author is deeply appreciated.

Okay