laravel/nova-log-viewer
A Laravel Nova tool for viewing your application logs.
Maintainers
v1.3.0
2026-06-23 11:27 UTC
Requires
- php: ^8.1
- illuminate/support: ^10.48.29|^11.44.1|^12.1.1|^13.0.0
- laravel/nova: ^5.9.0
Requires (Dev)
- laravel/nova-devtool: ^1.10.0
- laravel/pint: ^1.20
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
This package makes it easy to view your Laravel application logs inside of Nova. It even supports polling.
Installation
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(), ]; }
