In this article, we will see laravel whereDate and whereDay examples. As you all know laravel provides many inbuilt functionalities like query builder, eloquent, etc. So, here we will give you an example of whereDay and WhereDate using the date function in laravel 6, laravel 7, and laravel 8.
So, let's see the laravel 7/8 whereDate query example and laravel 7/8 whereDay query example.
The whereDate method is used to compare a column's value against a date. whereDate() through we can make conditions like date even column datatype timestamps.
Example 1:
$birthdate = DB::table('students')
->whereDate('bday', '2021-01-01')
->get();
dd($birthdate);
In this example you will get all result of bday which one have date like 01-01-2021.
Example 2:
$birthdate = DB::table('students')
->whereDate('bday','<=','2021-01-01')
->get();
dd($birthdate);
The whereDay
method is used to compare a column's value against a specific day of the month. whereDay() through we can get only specific day records from your timestamps column.
Example:
$birthdate = DB::table('students')
->whereDay('bday', '2021-01-01')
->get();
dd($birthdate);
In this example, you will get all data for which one date day value has 01.
In this article, we will see a custom toastr notification in laravel 9. we will create a custom notification using HTML,...
Sep-23-2022
In this example we will see how to google autocomplete address in laravel 8. In laravel 8 google autocomplete address tu...
Aug-16-2021
In this article, we will see how to use CSS in React JS. Also, we will see camel case CSS in React JS. React i...
Aug-17-2022
In this article, I will guide you through the process of installing the PHP XML extension in Ubuntu. The PHP XML extensi...
Jul-19-2023