Search by

ugarit / nova-log-viewer

muathrabuouda

A Ugarit Nova tool for viewing your application logs.

Package info

github.com/ugaritco/nova-log-viewer

pkg:composer/ugarit/nova-log-viewer

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.00.00 2026-09-15 14:54 UTC

This package is auto-updated.

Last update: 2026-09-15 20:21:20 UTC


README

Nova Log Viewer

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

logviewer

Installation

You can install the Nova tool via Composer:

composer require ugarit/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 [
        // ...
        \Ugarit\Nova\LogViewer\LogViewer::make(),
    ];
}