$this->model::where("created_at", ">=", "NOW()")->get(); DOES NOT WORK
try this: $this->model::where("created_at", ">=", DB::raw("NOW() - INTERVAL {$hours} HOUR"))->get();