dagasmart/scheduling

方便管理 laravel 的定时任务

1.0.2 2025-03-29 17:44 UTC

This package is auto-updated.

Last update: 2025-04-29 17:58:08 UTC


README

一个显示 laravel 任务调度的包

修改 laravel admin 的 scheduling 扩展,使其支持bizadmin https://github.com/laravel-admin-extensions/scheduling

Installation

composer require dagasmart/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');
    }
}

img.png