llaski/nova-scheduled-jobs 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

llaski/nova-scheduled-jobs

最新稳定版本:6.1.3

Composer 安装命令:

composer require llaski/nova-scheduled-jobs

包简介

A Laravel Nova package to view your scheduled jobs.

README 文档

README

Latest Version on Packagist Test Suite Total Downloads

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.

Nova Scheduled Jobs Tool Screenshot

Card

Nova Scheduled Jobs Card Screenshot

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.

统计信息

  • 总下载量: 390.51k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 55
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 54
  • Watchers: 4
  • Forks: 23
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-08-25