laravel/nova-log-viewer

A Laravel Nova tool for viewing your application logs.

0.1.4 2022-10-25 14:28 UTC

This package is auto-updated.

Last update: 2024-03-09 16:35: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(),
    ];
}