Ratings | | Unique User Downloads | | Download Rankings |
Not yet rated by the users | | Total: 77 | | All time: 10,019 This week: 167 |
|
Description | | Author |
This package can display information about logs in Laravel Nova.
It provides a component that can be added to the Laravel Nova panel so it show several details about log files in visual way.
The component can show tables listing the messages of logs, as well pie charts showing the count of log messages in different pie slices for each log message type. Innovation Award
March 2019
Number 3 |
Laravel Nova is a nice administration panel that allows integrating third-party components to extend its capabilities.
This package is a component that can display information about logs in Laravel Nova in a visually attractive way.
Manuel Lemos |
| |
|
|
Innovation award
Nominee: 6x
Winner: 3x |
|
Details
Nova Log Viewer
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.
|
Applications that use this package |
|
No pages of applications that use this class were specified.
If you know an application of this package, send a message to the author to add a link here.