In this tutorial i will show you, How to Get Last 7 Days Record in Laravel application. 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. You Can Learn How to Generate and Read Sitemap XML File in Laravel 11 Tutorial
i will show you simple code of controller method where we written code to getting last 7 days records using carbon laravel eloquent.
How to Get Last 7 Days Record in Laravel Example:
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);
}
}
Read More Tutorials From DevScriptSchool.Com
Top comments (0)