Task scheduling extension for laravel-admin
199,044
92
5
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: 2024-04-18 15:05:52
Package Statistics
Total Downloads: 199,044
Monthly Downloads: 1,899
Daily Downloads: 105
Total Stars: 92
Total Watchers: 5
Total Forks: 34
Total Open Issues: 9

Scheduling task manager for laravel-admin

StyleCI Packagist Total Downloads Pull request welcome

A web interface for manage task scheduling in laravel.

Documentation | 中文文档

Screenshot

wx20170810-101048

Installation

$ 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.

License

Licensed under The MIT License (MIT).