How to Get Last 7 Days Record in Laravel?
This simple article demonstrates of laravel get last 7 days records. i explained simply about get last 7 days data in laravel. i explained simply step by step get last 7 days records in laravel. In this article, we will implement a laravel get last 7 days data from database.
we can easily get last 7 days records in laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 version.
i will show you simple code of controller method where we written code to getting last 7 days records using carbon laravel eloquent.
let's see controller code:
Controller File:
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Carbon\Carbon;
class UserController extends Controller
{
/**
* Write code on Method
*
* @return response()
*/
public function index()
{
$date = Carbon::now()->subDays(7);
$users = User::where('created_at', '>=', $date)->get();
dd($users);
}
}
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Laravel Eloquent firstOrCreate Example
- Laravel Eloquent Group By Example
- Laravel Eloquent take() and skip() Query Example
- Laravel Eloquent whereNotBetween() Query Example
- Laravel Eloquent selectRaw() Query Example
- Laravel Eloquent whereRaw Condition Example
- How to Create and Use Query Scope in Laravel Eloquent
- How to use Union Query with Laravel Eloquent?
- Laravel Many to Many Eloquent Relationship Tutorial
- Laravel - whereDate(), whereMonth(), whereDay() and whereYear() Example
- Laravel Eloquent Where Like Query Example Tutorial