laravel / nova-log-viewer
A Laravel Nova tool for viewing your application logs.
Installs: 238 379
Dependents: 1
Suggesters: 0
Security: 0
Stars: 134
Watchers: 17
Forks: 14
pkg:composer/laravel/nova-log-viewer
Requires
- php: ^8.1
- illuminate/support: ^10.48.23|^11.35|^12.0
- laravel/nova: ^5.2
Requires (Dev)
- laravel/nova-devtool: ^1.6
- laravel/pint: ^1.20
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(),
];
}