How We can use whereBetween() method to retrieve the data between two dates with Query? code example
Example: laravel between dates
$from = date('2018-01-01');
$to = date('2018-05-02');
Reservation::whereBetween('reservation_from', [$from, $to])->get();