laravel/nova-log-viewer
View and search your Laravel application logs directly inside Laravel Nova. Nova Log Viewer adds a simple tool UI with real-time polling support, making it easy to inspect errors, stack traces, and recent log entries without leaving the admin panel.

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(),
];
}
How can I help you explore Laravel packages today?