Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/laravel-admin-extensions/scheduling
Scheduling task manager for laravel-admin
https://github.com/laravel-admin-extensions/scheduling
laravel laravel-admin scheduling
Last synced: about 1 month ago
JSON representation
Scheduling task manager for laravel-admin
- Host: GitHub
- URL: https://github.com/laravel-admin-extensions/scheduling
- Owner: laravel-admin-extensions
- License: mit
- Created: 2017-08-08T09:43:36.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-10-11T09:17:56.000Z (about 3 years ago)
- Last Synced: 2024-11-02T18:41:22.356Z (about 1 month ago)
- Topics: laravel, laravel-admin, scheduling
- Language: PHP
- Homepage: http://laravel-admin.org/
- Size: 24.4 KB
- Stars: 93
- Watchers: 5
- Forks: 33
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-laravel-admin - scheduling - Laravel计划任务管理工具 (扩展包 / 工具类扩展包)
README
Scheduling task manager for laravel-admin
============================[![StyleCI](https://styleci.io/repos/99676857/shield?branch=master)](https://styleci.io/repos/99676857)
[![Packagist](https://img.shields.io/packagist/l/laravel-admin-ext/scheduling.svg?maxAge=2592000)](https://packagist.org/packages/laravel-admin-ext/scheduling)
[![Total Downloads](https://img.shields.io/packagist/dt/laravel-admin-ext/scheduling.svg?style=flat-square)](https://packagist.org/packages/laravel-admin-ext/scheduling)
[![Pull request welcome](https://img.shields.io/badge/pr-welcome-green.svg?style=flat-square)]()A web interface for manage task scheduling in laravel.
[Documentation](http://laravel-admin.org/docs/#/en/extension-scheduling) | [中文文档](http://laravel-admin.org/docs/#/zh/extension-scheduling)
## Screenshot
![wx20170810-101048](https://user-images.githubusercontent.com/1479100/29151552-8affc0b2-7db4-11e7-932a-a10d8a42ec50.png)
## 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:
```php
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)](LICENSE).