PHPackages                             holyfalcon/logviewer - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Logging &amp; Monitoring](/categories/logging)
4. /
5. holyfalcon/logviewer

ActiveLibrary[Logging &amp; Monitoring](/categories/logging)

holyfalcon/logviewer
====================

organized logs

v1.0.1(2y ago)211MITPHPPHP ^8.0

Since Sep 17Pushed 2y ago1 watchersCompare

[ Source](https://github.com/holyfalcon/laravelLogViewer)[ Packagist](https://packagist.org/packages/holyfalcon/logviewer)[ RSS](/packages/holyfalcon-logviewer/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (4)Versions (3)Used By (0)

laravel Log Viewer
==================

[](#laravel-log-viewer)

[![License](https://camo.githubusercontent.com/fe0b2fd0b12776dcd9aed029a4240132d3fb46392744e7089f164ceec32fbbeb/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f686f6c7966616c636f6e2f6c61726176656c4c6f67566965776572)](https://github.com/holyfalcon/laravelLogViewer)[![Latest Stable Version](https://camo.githubusercontent.com/c40fc3e17a68330679cf7b46eac456b075bc500deb41c6228de9c52cb0a4fbae/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f686f6c7966616c636f6e2f6c6f67766965776572)](https://packagist.org/packages/holyfalcon/logviewer)[![PHP version](https://camo.githubusercontent.com/1bc93d6846c9abdee917b0ff9d937bd0ebc59e05ef13073a80d558ca5a8638b8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646570656e64656e63792d762f686f6c7966616c636f6e2f6c6f677669657765722f7068702e737667)](https://packagist.org/packages/holyfalcon/logviewer)[![Build Status](https://camo.githubusercontent.com/20c28cd799f51369856701d54ad791ff0c2752d6cce28ae8725aa410df8dc288/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f686f6c7966616c636f6e2f6c61726176656c4c6f67566965776572)](https://github.com/holyfalcon/laravelLogViewer)

This package gives you a list of project logs. You can regularly check the log content with the time and level of that log in separate records.

Advantages of this package
--------------------------

[](#advantages-of-this-package)

Unlike other similar packages that read and display the records from the laravel.log file to check the project log, in this package, as soon as the log is created, before a record is saved in the file, it converts it to the appropriate format and the important parts of each record. For example: it extracts the content, level, date and channel of the record and stores it in the database. This makes the log list not dependent on the file, and if the size of the log file increases, the loading speed of the page related to the logs will not decrease.

Install package
---------------

[](#install-package)

Install via composer

```
composer require holyfalcon/logviewer
```

Add Service Provider to `config/app.php` in `providers` section

```
Falcon\Logviewer\LogviewerServiceProvider::class,
```

To get the log in real time we should define new channel in `config/logging.php` inside `channels` array below of `stack` channel

```
'stack' => [
...
],

'log-viewer' => [
    'driver' => 'custom',
    'via' => \Falcon\Logviewer\Services\LogviewerService::class,
    'level' => 'debug',
],
```

Add this `log-viewer` in channels of `stack`

```
'stack' => [
            'driver' => 'stack',
            'channels' => ['single', 'log-viewer'],
            'ignore_exceptions' => false,
        ],
```

Migrate logs table for storing records:

```
php artisan migrate
```

Now you can publish the views by the artisan command:

```
php artisan vendor:publish --tag=views
```

That's it after this steps in `/logs` you can see logs of your project.

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~5 days

Total

2

Last Release

960d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/764f34d526096ba6dbde9af0d2bcb0a608b9a619297e5cf2c4eeecfe0ec8b3a0?d=identicon)[holyfalcon](/maintainers/holyfalcon)

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/holyfalcon-logviewer/health.svg)

```
[![Health](https://phpackages.com/badges/holyfalcon-logviewer/health.svg)](https://phpackages.com/packages/holyfalcon-logviewer)
```

###  Alternatives

[rollbar/rollbar

Monitors errors and exceptions and reports them to Rollbar

33723.7M81](/packages/rollbar-rollbar)[illuminate/log

The Illuminate Log package.

6224.3M517](/packages/illuminate-log)[illuminated/console-logger

Logging and Notifications for Laravel Console Commands.

8674.9k](/packages/illuminated-console-logger)[alleyinteractive/logger

A Monolog-based logging tool for WordPress. Supports storing log message in a custom post type or in individual posts and terms.

30297.5k1](/packages/alleyinteractive-logger)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
