A Laravel Nova tool to display the application log.
spatie/nova-tail-tool is a Laravel package for a laravel nova tool to display the application log..
It currently has 119 GitHub stars and 129.000 downloads on Packagist (latest version 3.0.4).
Install it with composer require spatie/nova-tail-tool.
Discover more Laravel packages by spatie
or browse all Laravel packages to compare alternatives.
Last updated
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.
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.
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 \Spatie\TailTool\TailTool(),
];
}
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.
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
If you've found a bug regarding security please mail [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.