Scheduler List: A Web Dashboard for Laravel's Scheduled Tasks

Last updated on by

Scheduler List: A Web Dashboard for Laravel's Scheduled Tasks image

Scheduler List by Akshay is a Laravel package that puts your scheduled tasks behind a web dashboard instead of leaving them in php artisan schedule:list output. It reads the tasks you've registered, shows their cron expressions and next run times, and lets you trigger one from the browser and watch its output stream back.

A List of Every Scheduled Task

The dashboard reads the tasks you register in your console routes and renders them with their schedule, next run time, timezone, and any constraints attached to them. A description() call on a task carries through to the UI, so it's worth adding one:

Schedule::command('inspire')
->everyMinute()
->description('Displays a random motivational quote.');

Tasks are grouped by type—Artisan commands, closures, and shell jobs—and you can filter the list by type or run a search across command names, expressions, and descriptions.

Scheduler List UI
Scheduler List UI

Running a Task on Demand

When manual execution is enabled, you can run a task from the dashboard rather than waiting for its next scheduled tick. The package opens a console overlay and streams the command's terminal output back in real time, up to a configurable character limit. This is off by default, and the output_limit config caps how much output the UI will hold (12,000 characters out of the box).

Disabled by Default, Behind Auth

The dashboard ships disabled and gated behind the web and auth middleware. Both the dashboard itself and manual execution are opt-in through environment variables:

SCHEDULER_LIST_ENABLED=true
SCHEDULER_LIST_MANUAL_EXECUTION=false

For anything beyond a local machine, the README recommends adding a gate so only the right users reach it:

Gate::define('viewSchedulerList', function ($user) {
return $user->is_admin;
});

Running arbitrary scheduled commands from a browser is a real risk, so keep manual_execution off in production unless you've locked down access.

Installation

Install the package via Composer and publish its config:

composer require devakshay/scheduler-list-laravel
php artisan vendor:publish --tag="scheduler-list-laravel-config"

Once enabled, the dashboard lives at /schedulers. You can read more and view the source on GitHub.

You can try it on the demo site.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Cube

Laravel Newsletter

Join 40k+ other developers and never miss out on new tips, tutorials, and more.

image
Acquaint Softtech

Hire Laravel developers with AI expertise at $20/hr. Get started in 48 hours.

Visit Acquaint Softtech
Acquaint Softtech logo

Acquaint Softtech

Acquaint Softtech offers AI-ready Laravel developers who onboard in 48 hours at $3000/Month with no lengthy sales process and a 100 percent money-back guarantee.

Acquaint Softtech
No Compromises logo

No Compromises

Joel and Aaron, the two seasoned devs from the No Compromises podcast, are now available to hire for your Laravel project. ⬧ Flat rate of $9500/mo. ⬧ No lengthy sales process. ⬧ No contracts. ⬧ 100% money back guarantee.

No Compromises
Laravel Cloud logo

Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Laravel Cloud
Shift logo

Shift

Running an old Laravel version? Instant, automated Laravel upgrades and code modernization to keep your applications fresh.

Shift
PhpStorm logo

PhpStorm

The go-to PHP IDE with extensive out-of-the-box support for Laravel and its ecosystem.

PhpStorm
Tinkerwell logo

Tinkerwell

The must-have code runner for Laravel developers. Tinker with AI, autocompletion and instant feedback on local and production environments.

Tinkerwell
Lucky Media logo

Lucky Media

Get Lucky Now - the ideal choice for Laravel Development, with over a decade of experience!

Lucky Media
SaaSykit: Laravel SaaS Starter Kit logo

SaaSykit: Laravel SaaS Starter Kit

SaaSykit is a Multi-tenant Laravel SaaS Starter Kit that comes with all features required to run a modern SaaS. Payments, Beautiful Checkout, Admin Panel, User dashboard, Auth, Ready Components, Stats, Blog, Docs and more.

SaaSykit: Laravel SaaS Starter Kit
Kirschbaum logo

Kirschbaum

Providing innovation and stability to ensure your web application succeeds.

Kirschbaum
Harpoon: Next generation time tracking and invoicing logo

Harpoon: Next generation time tracking and invoicing

The next generation time-tracking and billing software that helps your agency plan and forecast a profitable future.

Harpoon: Next generation time tracking and invoicing

The latest

View all →
Community Laravel Extension for Zed image

Community Laravel Extension for Zed

Read article
Advanced Eloquent Query Filtering with Filterable image

Advanced Eloquent Query Filtering with Filterable

Read article
Bulk Job Dispatching with Bus::bulk() in Laravel 13.13 image

Bulk Job Dispatching with Bus::bulk() in Laravel 13.13

Read article
Audit Laravel Apps for Security Issues with Checkpoint image

Audit Laravel Apps for Security Issues with Checkpoint

Read article
In-Memory Eloquent Models with Truffle image

In-Memory Eloquent Models with Truffle

Read article
Detect and Resolve Laravel Schema Drift with MigrAlign image

Detect and Resolve Laravel Schema Drift with MigrAlign

Read article