如何在laravel 5中获取当前日期与接下来30天之间的记录? 这是我用于此的代码。
public static function getNextInspections()
{
$inspection = DB::table('inspection');
$inspection->select('*');
$inspection ->where('next_inspection_date', DB::raw('BETWEEN NOW() AND DATE_ADD(NOW(),INTERVAL 30 DAY)'));
return $inspection->get();
}
我在laravel 5中没有得到正确答案。 但我在mysql中得到了答案。下面给出的是我使用的MySQL命令:
“从检查中选择equipment_id,next_inspection_date,deleted_at,其中next_inspection_date BETWEEN NOW()和DATE_ADD(now(),INTERVAL 30 DAY);”
任何人都可以帮助我吗?