Laravel whereDay Example

Laravel whereday or where day function example; Through this tutorial, i am going to show you how to use whereDay() function with eloquent queries in laravel apps.

The whereDay method may be used to compare a column’s value against a specific day of the month.

Example 1 – Laravel WhereDay()

Now, i am going to show you how to use whereDay() function with db::table() in laravel app; as follows:

DB::table('users')
->whereDay('created_at', '05')
->get();

Example 2 – Laravel WhereDay()

Next, i am going to show you how to use whereDay() function with model in laravel app; as follows:

User::whereDay('created_at', '05')

->get();

Leave a Comment