| Package Data | |
|---|---|
| Maintainer Username: | encore | 
| Maintainer Contact: | zosong@126.com (z-song) | 
| Package Create Date: | 2017-08-08 | 
| Package Last Update: | 2021-10-11 | 
| Home Page: | http://laravel-admin.org/ | 
| Language: | PHP | 
| License: | MIT | 
| Last Refreshed: | 2025-10-26 15:02:22 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 236,236 | 
| Monthly Downloads: | 1,711 | 
| Daily Downloads: | 33 | 
| Total Stars: | 93 | 
| Total Watchers: | 4 | 
| Total Forks: | 33 | 
| Total Open Issues: | 10 | 
A web interface for manage task scheduling in laravel.

$ composer require laravel-admin-ext/scheduling
$ php artisan admin:import scheduling
Open http://your-host/admin/scheduling.
Try to add a scheduling task in app/Console/Kernel.php like this:
class Kernel extends ConsoleKernel
{
    protected function schedule(Schedule $schedule)
    {
        $schedule->command('inspire')->everyTenMinutes();
        
        $schedule->command('route:list')->dailyAt('02:00');
    }
}
And you can find these tasks in scheduling panel.
Licensed under The MIT License (MIT).