ItSolutionStuff.com

How to Get Year Wise Data in Laravel?

By Hardik Savani • April 16, 2024
Laravel

This example is focused on laravel get year wise data. Here you will learn laravel get year with count of records. i explained simply about how to get year wise data in laravel. In this article, we will implement a get all years records with count in laravel. Let's see bellow example laravel get year wise data.

we can get data year with count 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 year wise 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;

use DB;

class ITSController extends Controller

{

/**

* Write code on Method

*

* @return response()

*/

public function index()

{

$items = Item::select(

DB::raw("(COUNT(*)) as count"),

DB::raw("YEAR(created_at) as year")

)

->orderBy('created_at', 'DESC')

->groupBy('year')

->get();

dd($items);

}

}

Output:

Array

(

[0] => Array

(

[count] => 4

[year] => 2021

)

[1] => Array

(

[count] => 6

[year] => 2020

)

[2] => Array

(

[count] => 2

[year] => 2019

)

)

I hope it can help you...

Tags: Laravel
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Get Last 12 Months Data in Laravel?

Read Now →

How to Get Last 6 Months Data in Laravel?

Read Now →

How to Get Last Month Data in Laravel?

Read Now →

How to Get Current Year Data in Laravel?

Read Now →

How to Get Month Wise Data in Laravel?

Read Now →

How to Get Today Created Records in Laravel?

Read Now →

How to Get Current Week Records in Laravel?

Read Now →

How to Get Last 7 Days Record in Laravel?

Read Now →

How to Get Last 30 Days Record in Laravel?

Read Now →

How to Get Soft Deleted Records in Laravel?

Read Now →

How to Insert Multiple Records in Laravel?

Read Now →