daimakuai-ext/scheduling
A web interface for manage task scheduling in laravel., (*1)
Screenshot
, (*2)
Installation
$ composer require daimakuai-ext/scheduling
$ php artisan admin:import scheduling
Open http://your-host/admin/scheduling
., (*3)
Try to add a scheduling task in app/Console/Kernel.php
like this:, (*4)
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., (*5)
License
Licensed under The MIT License (MIT)., (*6)