tanson / scheduling
Task scheduling extension for laravel-admin
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 33
pkg:composer/tanson/scheduling
Requires
- php: >=7.0.0
- laravel/framework: 5.4.*
- tanson/laravel-admin: 1.4.*
Requires (Dev)
- laravel/laravel: 5.*
- phpunit/phpunit: ~6.0
This package is auto-updated.
Last update: 2025-09-19 01:51:58 UTC
README
A web interface for manage task scheduling in laravel.
Screenshot
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).