ugarit / nova-log-viewer
A Ugarit Nova tool for viewing your application logs.
1.00.00
2026-09-15 14:54 UTC
Requires
- php: ^8.1
- heritage/support: ^1.00.00
- ugarit/nova: ^1.00.00
Requires (Dev)
- ugarit/nova-devtool: ^1.00.00
- ugarit/pint: ^1.00.00
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is auto-updated.
Last update: 2026-09-15 20:21:20 UTC
README
This package makes it easy to view your Ugarit application logs inside of Nova. It even supports polling.
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(), ]; }
