https://github.com/davidpiesse/nova-maintenance-mode
Maintenance Mode for Laravel Nova
https://github.com/davidpiesse/nova-maintenance-mode
laravel nova vue
Last synced: 5 months ago
JSON representation
Maintenance Mode for Laravel Nova
- Host: GitHub
- URL: https://github.com/davidpiesse/nova-maintenance-mode
- Owner: davidpiesse
- License: mit
- Created: 2018-08-22T08:50:03.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-01-27T15:32:58.000Z (over 7 years ago)
- Last Synced: 2025-11-07T10:09:04.015Z (8 months ago)
- Topics: laravel, nova, vue
- Language: Vue
- Size: 140 KB
- Stars: 33
- Watchers: 2
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Maintenance Mode in Nova
[](https://packagist.org/packages/davidpiesse/nova-maintenance-mode)
[](https://travis-ci.org/davidpiesse/nova-maintenance-mode)
[](https://scrutinizer-ci.com/g/davidpiesse/nova-maintenance-mode)
[](https://packagist.org/packages/davidpiesse/nova-maintenance-mode)
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](https://nova.laravel.com) via composer:
```bash
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`.
```php
// 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](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
### Security
If you discover any security related issues, please email piesse@gmail.com instead of using the issue tracker.
## Credits
- [David Piesse](https://github.com/davidpiesse)
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.