# Register the alert evaluator on the schedule

In routes/console.php (or bootstrap/app.php ->withSchedule), add:

    use App\Notifications\Jobs\EvaluateAlertsJob;
    use Illuminate\Support\Facades\Schedule;

    Schedule::job(new EvaluateAlertsJob)->hourly();

The scheduler cron you already added (schedule:run every minute) will dispatch it.
