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
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
Shift logo

Shift

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

Shift
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
Laravel Cloud logo

Laravel Cloud

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

Laravel Cloud
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
Tinkerwell logo

Tinkerwell

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

Tinkerwell
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
Kirschbaum logo

Kirschbaum

Providing innovation and stability to ensure your web application succeeds.

Kirschbaum
PhpStorm logo

PhpStorm

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

PhpStorm
Lucky Media logo

Lucky Media

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

Lucky Media

The latest

View all →
Turn PHP Attributes Into Docs With Signal image

Turn PHP Attributes Into Docs With Signal

Read article
USAIGE: Track Token Usage and Costs for Laravel AI SDK Requests image

USAIGE: Track Token Usage and Costs for Laravel AI SDK Requests

Read article
Help make Filament faster! image

Help make Filament faster!

Read article
Yammi Audit Log: Track Who Really Made a Change Across Jobs and Queues image

Yammi Audit Log: Track Who Really Made a Change Across Jobs and Queues

Read article
Route Metadata Support in Laravel 13.17 image

Route Metadata Support in Laravel 13.17

Read article
Ship AI with Laravel: Failover, Queues, and Middleware for AI Agents image

Ship AI with Laravel: Failover, Queues, and Middleware for AI Agents

Read article