PHPJunior / nova-logs by Nyi Nyi Lwin

Provides a Log Viewer for Laravel Nova
369,211
77
2
Package Data
Maintainer Username: Nyi Nyi Lwin
Maintainer Contact: nyinyilwin1992@hotmail.com (Nyi Nyi Lwin)
Package Create Date: 2018-09-01
Package Last Update: 2024-07-19
Language: Vue
License: MIT
Last Refreshed: 2024-11-15 15:24:04
Package Statistics
Total Downloads: 369,211
Monthly Downloads: 4,741
Daily Downloads: 177
Total Stars: 77
Total Watchers: 2
Total Forks: 17
Total Open Issues: 20

Nova Log Viewer

Latest Stable Version Total Downloads

screenshot 1

screenshot 2

screenshot 3

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.