I am trying to get my cron to only get Projects that are due to recur/renew in the next 7 days to send out reminder emails. I\'ve just found out my logic doesn\
Didn't wan to mess with carbon. So here's my solution
$start = new \DateTime('now');
$start->modify('first day of this month');
$end = new \DateTime('now');
$end->modify('last day of this month');
$new_releases = Game::whereBetween('release', array($start, $end))->get();