In this post we have learn how to laravel whereMonth and whereYear example, whereMonth and whereYear is use to get month and year data from specific date field column so, here we will use whereMonth and whereYear in laravel 8.
The whereMonth
method is used to compare a column’s value against a specific month, whereMonth() will aid to condition for get specific month records from date.
Example of whereMonth
$users = DB::table('users')
->whereMonth('created_at', '10')
->get();
In this example we will get result from created_at column which one has month is 10.
The whereYear
method is used to compare a column’s value against a specific year, whereYear() will help to get only specific year records from your timestamps fields
Example:
$users = DB::table('users')
->whereYear('created_at', '2021')
->get();
In this example you will get data from created_at column which one contain 2021 year.