Laravel whereMonth and whereYear Example
In this post i will show you 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 help to condition for get specific month records from date.
whereMonth()
Example:
$users = DB::table('users')
->whereMonth('created_at', '12')
->get();
In this example we will get result from created_at column which one has month is 12.
whereYear()
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.
Thanks for the reading…!!
Don’t forgot to like, share and claps.