
Get latest record by created at in Laravel
Get latest record by created at in Laravel
In this session, we’ll try our hand at solving the "Get latest record by created at in Laravel" puzzle by using the computer language.
You can get the latest record by using created_at column in Laravel with orderBy(), sortByDesc(), latest() method. There are lots of method available in Laravel to get the latest record from the table. You can use one of them to get the latest record from table in Laravel-
Get latest record from users table using sortByDesc() method on created at column in Laravel
$lastRecord = App\Models\User::all()->sortByDesc('created_at')->take(1)->toArray(); return $lastRecord;
Output:
{"12":{"id":19,"name":"w3codegenerator.com","email":"w3codegenerat[email protected]","email_verified_at":"2021-09-24T03:36:45.000000Z",
"created_at":"2021-10-17T03:36:45.000000Z","updated_at":"2021-09-24T03:36:45.000000Z"}}This code snippet get all the users records from users table and sort it by descending order and take first item from collection after sorting.
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
Don't forget to share this article! Help us spread the word by clicking the share button below.
We appreciate your support and are committed to providing you valuable and informative content.
We are thankful for your never ending support.
Random Code Snippet Queries: Laravel
- How to remove package from laravel
- How to decrypt laravel password
- How to create controller in laravel
- How to restore multiple records after soft-deletes in Laravel
- Redirect to previous page or url in laravel
- How to fetch single row data from database in laravel
- Insert data with form validation using ajax in laravel
- Rendering HTML from database table to view in Laravel
- JQuery each loop on json response after ajax in laravel
- Database transactions in laravel
- Insert current date time in a column using Laravel
- Automatically remove records using Prunable trait in Laravel
- How to get last year records count with month wise in Laravel
- Laravel save object to database
- How to delete record in Laravel with ajax
- Use of undefined constant laravel
- Update record after find method in lavavel
- How to get id of next record in laravel
- Validation errors for multiple forms on same page Laravel
- Laravel route parameter
- How to avoid duplicate entries in pivot table in Laravel
- How to display validation error in laravel
- How to get images from AWS s3 and display in Laravel blade
- Get Array of IDs from Eloquent Collection
- Create model with migration and seeder