mlsolutions / nova-logs
Provides a Log Viewer for Laravel Nova
Installs: 192
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 20
Language:Vue
pkg:composer/mlsolutions/nova-logs
Requires
- php: ^8.0|^8.3
- arcanedev/log-viewer: dev-develop as 11.1
- laravel/nova: ^4.0|^5.0
Requires (Dev)
- orchestra/testbench: ^8.0
- phpunit/phpunit: ^10.0
This package is not auto-updated.
Last update: 2025-09-25 20:30:27 UTC
README
Requirements
php: ^7.4 | ^8
laravel/nova: ^4
For Laravel Nova Version 3, please use v1 instead.
Installation
You can install the package in to a Laravel app that uses Nova via composer:
composer require mlsolutions/nova-logs
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 \MlSolutions\NovaLogViewer\Tool(), ]; }
To publish the configuration use:
php artisan vendor:publish --tag=nova-logs-config
Changelog
Please see CHANGELOG for more information on what has changed recently.
Credits
License
The MIT License (MIT). Please see License File for more information.