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()
Top comments (0)