iblacker / nova-log-viewer
Provides a Log Viewer for Laravel Nova
Installs: 33 158
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 0
Forks: 18
Open Issues: 1
Language:Vue
Requires
- php: ^7.1.3
- arcanedev/log-viewer: *
Requires (Dev)
- orchestra/testbench: ^3.6
- phpunit/phpunit: 7.1
This package is auto-updated.
Last update: 2025-03-16 10:48:56 UTC
README
About
This is a fork of PHPJunior/nova-logs, which seems to be abandoned. No major changes to the code, mostly updated the design to be consistent with Laravel Nova's design language. I am hoping to maintain this repo and fix any potential bug.
Installation
You can install the package in to a Laravel app that uses Nova via composer:
composer require iblacker/nova-log-viewer
LogViewer support only the daily log channel, so make sure that the LOG_CHANNEL
is set to daily
instead of stack
in your .env
file.
For Laravel 5.5 and below, set this in your .env
file
APP_LOG=daily
Next up, you must register the tool with Nova. This is typically done in the tools
method of the NovaServiceProvider
.
// in app/Providers/NovaServiceProvider.php public function tools() { return [ // ... new \Iblacker\NovaLogViewer\Tool(), ]; }
Changelog
Please see CHANGELOG for more information on what has changed recently.
Configuration
You can configure the behavior of the log view within a config file. First, just publish the default one:
php artisan vendor:publish --tag=config
Now you can edit the settings in the file config/log-viewer.php
.
Credits
License
The MIT License (MIT). Please see License File for more information.