@extends('layouts.app') @section('title', 'Scheduler Settings') @section('content')
Select which automated jobs should run through Laravel Scheduler
All {{ count($availableTasks) }} scheduler tasks are configured in routes/console.php and ready to run on the server.
routes/console.php. Use checkboxes to enable/disable them.
All schedules work on both Windows and Linux servers. Configure the appropriate task scheduler for your platform.
Choose which automation jobs should stay active.
Your choices are stored safely in application settings.
The artisan scheduler checks these settings before running jobs.
Windows Server: Use Windows Task Scheduler to run php artisan schedule:run every minute.
Linux Server: Use cron: * * * * * cd /path-to-project && php artisan schedule:run