twoDaysOld()->get(); Log::info('Carbon now()->subHours(48): '. Carbon::now()->subHours(48)); Log::info('Attempts count: '.count($attempts)); foreach ($attempts as $attempt){ (new ExpiresEmailVerificationAttempt())->execute($attempt); Log::info('Expired: '.$attempt->email.', '.$attempt->created_at); } $end = new Carbon(); $elapsedTime = $start->diff($end)->format('%H:%I:%S'); Log::info(Carbon::now() . ': End job - New user email verification expiration check. ElapsedTime: ' . $elapsedTime . '.'); } }