davidpiesse / nova-maintenance-mode
Enable and disable Maintenance Mode from within Laravel Nova
Installs: 62 188
Dependents: 0
Suggesters: 0
Security: 0
Stars: 33
Watchers: 3
Forks: 7
Open Issues: 2
Language:Vue
Requires
- php: >=7.1.0
- laravel/nova: *
Requires (Dev)
- orchestra/testbench: ^3.6
- phpunit/phpunit: 7.1
README
This package allows you to manage the Maintenance Mode for your application in Nova
Installation
You can install the package in to a Laravel app that uses Nova via composer:
composer require davidpiesse/nova-maintenance-mode
Next up, you must register the tool with Nova. This is typically done in the tools
method of the NovaServiceProvider
.
// in app/Providers/NovaServiceProvder.php // ... public function tools() { return [ // ... new \Davidpiesse\NovaMaintenanceMode\Tool(), ]; }
Usage
Click on the "Maintenance Mode" menu item in your Nova app to see the tool provided by this package.
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 piesse@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.