open-admin-ext / scheduling
Task scheduling extension for open-admin
Installs: 5 084
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 3
Open Issues: 1
Requires
- php: >=7.0.0
- open-admin-org/open-admin: ~1.0
Requires (Dev)
- laravel/laravel: ~5.5
- phpunit/phpunit: ~6.0
This package is auto-updated.
Last update: 2024-10-29 06:31:05 UTC
README
A web interface for manage task scheduling in laravel.
Screenshot
Installation
$ composer require open-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.
Debugging
If console shows errors like: sh: : command not found
Try adding this your .env file: PHP_BINARY=/path/to/your/php/binaray/
License
Licensed under The MIT License (MIT).