Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

den1n/nova-queues

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nova-queues

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

About

Queues resource for Laravel Nova.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages