llaski / nova-scheduled-jobs
A Laravel Nova package to view your scheduled jobs.
Installs: 329 143
Dependents: 0
Suggesters: 0
Security: 0
Stars: 54
Watchers: 5
Forks: 19
Open Issues: 14
Requires
- php: ^8.0
- laravel/nova: ^4.0
Requires (Dev)
- dev-master
- 6.1.3
- 6.1.2
- 6.1.1
- 6.1.0
- 6.0.2
- 6.0.1
- 6.0.0
- 5.0.1
- 5.0.0
- 4.1.0
- 4.0.1
- 4.0.0
- 3.1.0
- 3.0.0
- 2.1.0
- 2.0.0
- 1.6.0
- 1.5.0
- 1.4.0
- 1.3.0
- 1.2.0
- 1.1.0
- 1.0.0
- 0.0.6
- 0.0.5
- 0.0.4
- 0.0.3
- 0.0.2
- 0.0.1
- dev-dependabot/composer/orchestra/testbench-7.35.0
- dev-dependabot/npm_and_yarn/vue/compiler-sfc-3.3.8
- dev-dependabot/npm_and_yarn/vue-loader-17.3.1
- dev-dependabot/npm_and_yarn/browserify-sign-4.2.2
- dev-dependabot/npm_and_yarn/babel/traverse-7.23.2
- dev-dependabot/npm_and_yarn/postcss-8.4.31
- dev-dependabot/github_actions/actions/checkout-4
- dev-feature/package-updates
- dev-feature/pr-review-action
- dev-feature/nova-4-support
- dev-develop
This package is auto-updated.
Last update: 2024-10-13 22:10:36 UTC
README
Includes both a tool and card to display your scheduled commands and jobs
Tool
Please note that for the tool there are a large number of columns and depending on the type of scheduled jobs you have you may need to scroll horizontally to see all columns as well as view the actions available which include being able to dispatch certain jobs.
Card
Installation
You can install the package in to a Laravel app that uses Nova via composer:
composer require llaski/nova-scheduled-jobs
To setup the tool, you must register the tool with Nova. This is typically done in the tools
method of the NovaServiceProvider
.
// in app/Providers/NovaServiceProvider.php <?php namespace App\Providers; use Llaski\NovaScheduledJobs\Tool as NovaScheduledJobsTool; // ... public function tools() { return [ // ... new NovaScheduledJobsTool, ]; }
To setup the card, you must register the card with Nova. This is typically done in the cards
method of your resource or dashboard. For example:
// in app/Nova/Dashboards/Main.php <?php namespace App\Nova\Dashboards; use Llaski\NovaScheduledJobs\Card as NovaScheduledJobsCard; // ... public function cards() { return [ // ... new NovaScheduledJobsCard, ]; }
Testing
vendor/bin/phpunit --verbose
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email larry.laski@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.