A Laravel Nova tool for viewing your application logs.
laravel/nova-log-viewer is a Laravel package for a laravel nova tool for viewing your application logs..
It currently has 137 GitHub stars and 365.072 downloads on Packagist (latest version v1.3.0).
Install it with composer require laravel/nova-log-viewer.
Discover more Laravel packages by laravel
or browse all Laravel packages to compare alternatives.
Last updated

This package makes it easy to view your Laravel application logs inside of Nova. It even supports polling.

You can install the Nova tool via Composer:
composer require laravel/nova-log-viewer
Next, you must register the tool with Nova. This is typically done in the tools method of your application's NovaServiceProvider.
public function tools()
{
return [
// ...
\Laravel\Nova\LogViewer\LogViewer::make(),
];
}