php-junior / nova-logs
Provides a Log Viewer for Laravel Nova
Installs: 93 274
Dependents: 1
Suggesters: 0
Security: 0
Stars: 62
Watchers: 2
Forks: 11
Open Issues: 20
Language:Vue
Requires
- php: ^7.1.3|^8.0
- arcanedev/log-viewer: *
Requires (Dev)
- orchestra/testbench: ^3.6
- phpunit/phpunit: 7.1
- dev-master
- v1.1
- v1.0.10
- v1.0.9
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- dev-dependabot/npm_and_yarn/y18n-3.2.2
- dev-dependabot/npm_and_yarn/elliptic-6.5.4
- dev-dependabot/npm_and_yarn/ini-1.3.7
- dev-dependabot/npm_and_yarn/http-proxy-1.18.1
- dev-dependabot/npm_and_yarn/lodash.mergewith-4.6.2
- dev-dependabot/npm_and_yarn/node-sass-4.14.1
- dev-dependabot/npm_and_yarn/lodash-4.17.19
- dev-dependabot/npm_and_yarn/websocket-extensions-0.1.4
This package is auto-updated.
Last update: 2021-03-30 15:06:17 UTC
README
Installation
You can install the package in to a Laravel app that uses Nova via composer:
composer require php-junior/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 \PhpJunior\NovaLogViewer\Tool(), ]; }
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.