nova-tail-tool
A Laravel Nova tool to display the application log
Have you always wanted to see your application log in your Nova app? Now you can!
You can see the tool in action in this video on YouTube.
Support us
We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You’ll find our address on our contact page. We publish all received postcards on our virtual postcard wall.
Installation
You can install the nova tool in to a Laravel app that uses Nova via composer:
composer require spatie/nova-tail-tool
Next up, you must register the tool with Nova. This is typically done in the tools
method of the NovaServiceProvider
.
// in app/Providers/NovaServiceProvider.php // ... public function tools() { return [ // ... new SpatieTailToolTailTool(), ]; }
Usage
Click on the “Application log” menu item in your Nova app to see the log. Initially it will be empty. All new lines that are appended to the log will be shown.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you’ve found a bug regarding security please mail security@spatie.be instead of using the issue tracker.
Credits
- Freek Van der Herten
- Sebastian De Deyne
- All Contributors
License
The MIT License (MIT). Please see License File for more information.