Google News
logo
Laravel - Interview Questions
How can we get data between two dates using Query in Laravel?
We can use whereBetween() method to retrieve the data between two dates with Query.
 
Syntax :
Blog::whereBetween('created_at', [$date1, $date2])->get();
Advertisement