laravel/nova-log-viewer

A Laravel Nova tool for viewing your application logs.

Package info

github.com/laravel/nova-log-viewer

pkg:composer/laravel/nova-log-viewer

Statistics

Installs: 353 268

Dependents: 1

Suggesters: 0

Stars: 137

v1.3.0 2026-06-23 11:27 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT c99c87ae0a97c0bcc9136d5fbcefd661b90b2610

novalaravel

This package is auto-updated.

Last update: 2026-06-23 11:27:46 UTC


README

👁 Nova Log Viewer

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

👁 logviewer

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(),
 ];
}