Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Obter dados das últimas 8 horas em uma coluna datetime Eloquent


DB::raw tem um parâmetro então tente whereRaw assim:

->whereRaw('tasks.created_at = DATE_ADD(NOW(), INTERVAL -8 HOUR')