承接 den1n/nova-queues 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

den1n/nova-queues

最新稳定版本:v1.3.3

Composer 安装命令:

composer require den1n/nova-queues

包简介

Queues resource for Laravel Nova.

README 文档

README

Queue resource for Laravel Nova.

Supports only the database queue driver.

Installation

Install package with Composer.

composer require den1n/nova-queues

Publish package resources.

php artisan vendor:publish --provider=Den1n\NovaQueues\ServiceProvider

This will publish the following resources:

  • Configuration file config/nova-queues.php.
  • Translations resources/lang/vendor/nova-queues.
  • Views resources/views/vendor/nova-queues.

Create database queue table if it's not exists.

php artisan queue:table

Migrate database.

php artisan migrate

Add instance of class Den1n\NovaQueues\Tool to your App\Providers\NovaServiceProvider::tools() method to display the jobs within your Nova resources.

/**
 * Get the tools that should be listed in the Nova sidebar.
 *
 * @return array
 */
public function tools()
{
    return [
        new \Den1n\NovaQueues\Tool,
    ];
}

Screenshots

Jobs

Jobs

Job Details

Job Details

Contributing

  1. Fork it.
  2. Create your feature branch: git checkout -b my-new-feature.
  3. Commit your changes: git commit -am 'Add some feature'.
  4. Push to the branch: git push origin my-new-feature.
  5. Submit a pull request.

Support

If you require any support open an issue on this repository.

License

MIT

统计信息

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

GitHub 信息

  • Stars: 14
  • Watchers: 2
  • Forks: 8
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-12-26