How to Get Last 12 Months Data in Laravel?
Hi,
This tutorial will provide example of how to get last 12 months data in laravel. step by step explain laravel get last 12 months records. you will learn laravel get last one year data. This article will give you simple example of laravel get last 12 months data. You just need to some step to done get last 12 months data in laravel.
we can get last 12 months records in laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 application.
Here, i will give you very simple example of how to get last 12 months data in laravel. we will use whereBetween() and Carbon in this example.
I have one created items table that structure as bellow you can see.
items table:
Controller Code:
<?php
namespace App\Http\Controllers;
use Illuminate\Support\Facades\Http;
use App\Models\Item;
use Carbon\Carbon;
class ITSController extends Controller
{
/**
* Write code on Method
*
* @return response()
*/
public function index()
{
$items = Item::select('*')
->whereBetween('created_at',
[Carbon::now()->subYear(), Carbon::now()]
)
->get();
dd($items);
}
}
Output:
Array
(
[0] => Array
(
[id] => 9
[title] => Dr.
[body] => Body 4
[created_at] => 2021-06-07T18:13:40.000000Z
[updated_at] => 2021-08-12T13:46:08.000000Z
)
[1] => Array
(
[id] => 10
[title] => Dr.
[body] => Body 3
[created_at] => 2021-04-01T09:27:53.000000Z
[updated_at] => 2021-08-12T13:46:08.000000Z
)
[2] => Array
(
[id] => 12
[title] => Dr.
[body] => Body 2
[created_at] => 2021-09-07T13:46:43.000000Z
[updated_at] => 2021-08-12T13:46:43.000000Z
)
[3] => Array
(
[id] => 13
[title] => Mrs.
[body] => Body 1
[created_at] => 2021-09-01T13:46:43.000000Z
[updated_at] => 2021-08-12T13:46:43.000000Z
)
)
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
- How to Get Last Month Data in Laravel?
- How to Get Current Year Data in Laravel?
- How to Get Month Wise Data in Laravel?
- How to Get Today Created Records in Laravel?
- How to Get Current Week Records in Laravel?
- Laravel Eloquent without() and withOnly() Method Example
- How to Get Last 7 Days Record in Laravel?
- How to Get Last 30 Days Record in Laravel?
- Laravel Eloquent Delete Record By ID Example
- How to Get Soft Deleted Records in Laravel?
- How to Insert Multiple Records in Laravel?