daimakuai-ext / scheduling
Task scheduling extension for daimakuai-ext
v1.0.0
2018-08-26 02:28 UTC
Requires
- php: >=7.0.0
- jblv/daimakuai: >=1.0.0
- laravel/framework: 5.5.*
Requires (Dev)
- laravel/laravel: 5.*
- phpunit/phpunit: ~6.0
This package is not auto-updated.
Last update: 2024-10-27 04:07:56 UTC
README
A web interface for manage task scheduling in laravel.
Screenshot
Installation
$ composer require daimakuai-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).