PHPackages                             sn0rk64/laravel-log-viewer - 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. sn0rk64/laravel-log-viewer

ActiveLaravel-package[Logging &amp; Monitoring](/categories/logging)

sn0rk64/laravel-log-viewer
==========================

A Laravel log reader

v1.7.1(5y ago)1158MITPHPPHP &gt;=5.4.0

Since Nov 24Pushed 5y agoCompare

[ Source](https://github.com/sn0rk64/laravel-log-viewer)[ Packagist](https://packagist.org/packages/sn0rk64/laravel-log-viewer)[ RSS](/packages/sn0rk64-laravel-log-viewer/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (2)Dependencies (3)Versions (80)Used By (0)

Laravel log viewer
==================

[](#laravel-log-viewer)

TL;DR
-----

[](#tldr)

No public assets, no vendor routes, works with and/or without log rotate. Modification of [rap2hpoutre/laravel-log-viewer](https://github.com/rap2hpoutre/laravel-log-viewer.)

What ?
------

[](#what-)

Small log viewer for laravel. Looks like this:

[![demo page](https://camo.githubusercontent.com/fdf26253e7be7b212aca977b1d400eb6bf046de6f85724cb051bcfe7b0587526/68747470733a2f2f692e696d6775722e636f6d2f52785a444543362e706e67)](https://camo.githubusercontent.com/fdf26253e7be7b212aca977b1d400eb6bf046de6f85724cb051bcfe7b0587526/68747470733a2f2f692e696d6775722e636f6d2f52785a444543362e706e67)

The diffinces from main package
-------------------------------

[](#the-diffinces-from-main-package)

- Log level filters

[![](https://camo.githubusercontent.com/b751080c7a6fb0232a258c7e543c58499d9546a77d212470111a9af0718b26f1/68747470733a2f2f692e696d6775722e636f6d2f665772674c564c2e706e67)](https://camo.githubusercontent.com/b751080c7a6fb0232a258c7e543c58499d9546a77d212470111a9af0718b26f1/68747470733a2f2f692e696d6775722e636f6d2f665772674c564c2e706e67)

- Pretty json browsing

[![demo page](https://camo.githubusercontent.com/4c36e35f454699dcf7974700e24457a313d1e230c5c5124be46b122a317256b4/68747470733a2f2f692e696d6775722e636f6d2f5238454e5141732e706e67)](https://camo.githubusercontent.com/4c36e35f454699dcf7974700e24457a313d1e230c5c5124be46b122a317256b4/68747470733a2f2f692e696d6775722e636f6d2f5238454e5141732e706e67)

- Fully lumen support

Install (Laravel)
-----------------

[](#install-laravel)

Install via composer

```
composer require rap2hpoutre/laravel-log-viewer
```

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

```
Rap2hpoutre\LaravelLogViewer\LaravelLogViewerServiceProvider::class,
```

Add a route in your web routes file:

```
Route::get('logs', '\Rap2hpoutre\LaravelLogViewer\LogViewerController@index');
```

Go to `http://myapp/logs` or some other route

### Install (Lumen)

[](#install-lumen)

Install via composer

```
composer require rap2hpoutre/laravel-log-viewer
```

Add the following in `bootstrap/app.php`:

```
$app->register(\Rap2hpoutre\LaravelLogViewer\LaravelLogViewerServiceProvider::class);
```

Explicitly set the namespace in `app/Http/routes.php`:

```
$router->group(['namespace' => '\Rap2hpoutre\LaravelLogViewer'], function() use ($router) {
    $router->get('logs', 'LogViewerController@index');
});
```

Advanced usage
--------------

[](#advanced-usage)

### Customize view

[](#customize-view)

Publish `log.blade.php` into `/resources/views/vendor/laravel-log-viewer/` for view customization:

```
php artisan vendor:publish \
  --provider="Rap2hpoutre\LaravelLogViewer\LaravelLogViewerServiceProvider" \
  --tag=views
```

### Edit configuration

[](#edit-configuration)

Publish `logviewer.php` configuration file into `/config/` for configuration customization:

```
php artisan vendor:publish \
  --provider="Rap2hpoutre\LaravelLogViewer\LaravelLogViewerServiceProvider"
```

### Troubleshooting

[](#troubleshooting)

If you got a `InvalidArgumentException in FileViewFinder.php` error, it may be a problem with config caching. Double check installation, then run `php artisan config:clear`.

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community19

Small or concentrated contributor base

Maturity73

Established project with proven stability

 Bus Factor1

Top contributor holds 71.4% of commits — single point of failure

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 ~27 days

Recently: every ~19 days

Total

77

Last Release

2134d ago

Major Versions

v0.22.1 → v1.0.02019-01-02

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/45339109?v=4)[sn0rk64](/maintainers/sn0rk64)[@sn0rk64](https://github.com/sn0rk64)

---

Top Contributors

[![rap2hpoutre](https://avatars.githubusercontent.com/u/1575946?v=4)](https://github.com/rap2hpoutre "rap2hpoutre (142 commits)")[![sn0rk64](https://avatars.githubusercontent.com/u/45339109?v=4)](https://github.com/sn0rk64 "sn0rk64 (7 commits)")[![elminson](https://avatars.githubusercontent.com/u/2476286?v=4)](https://github.com/elminson "elminson (7 commits)")[![apreiml](https://avatars.githubusercontent.com/u/350183?v=4)](https://github.com/apreiml "apreiml (6 commits)")[![cino](https://avatars.githubusercontent.com/u/2735602?v=4)](https://github.com/cino "cino (3 commits)")[![Agontuk](https://avatars.githubusercontent.com/u/5656440?v=4)](https://github.com/Agontuk "Agontuk (3 commits)")[![scrutinizer-auto-fixer](https://avatars.githubusercontent.com/u/6253494?v=4)](https://github.com/scrutinizer-auto-fixer "scrutinizer-auto-fixer (3 commits)")[![AnthonyPorthouse](https://avatars.githubusercontent.com/u/5079595?v=4)](https://github.com/AnthonyPorthouse "AnthonyPorthouse (2 commits)")[![mikemand](https://avatars.githubusercontent.com/u/745184?v=4)](https://github.com/mikemand "mikemand (2 commits)")[![sskl](https://avatars.githubusercontent.com/u/149003?v=4)](https://github.com/sskl "sskl (2 commits)")[![rtconner](https://avatars.githubusercontent.com/u/334533?v=4)](https://github.com/rtconner "rtconner (2 commits)")[![mallardduck](https://avatars.githubusercontent.com/u/619938?v=4)](https://github.com/mallardduck "mallardduck (1 commits)")[![mattlibera](https://avatars.githubusercontent.com/u/6657359?v=4)](https://github.com/mattlibera "mattlibera (1 commits)")[![mrahmadt](https://avatars.githubusercontent.com/u/957921?v=4)](https://github.com/mrahmadt "mrahmadt (1 commits)")[![okaufmann](https://avatars.githubusercontent.com/u/4414498?v=4)](https://github.com/okaufmann "okaufmann (1 commits)")[![Omranic](https://avatars.githubusercontent.com/u/406705?v=4)](https://github.com/Omranic "Omranic (1 commits)")[![peppeocchi](https://avatars.githubusercontent.com/u/4161743?v=4)](https://github.com/peppeocchi "peppeocchi (1 commits)")[![RaazPuspa](https://avatars.githubusercontent.com/u/10107534?v=4)](https://github.com/RaazPuspa "RaazPuspa (1 commits)")[![rafaelbeckel](https://avatars.githubusercontent.com/u/28917?v=4)](https://github.com/rafaelbeckel "rafaelbeckel (1 commits)")[![abarreir](https://avatars.githubusercontent.com/u/1942346?v=4)](https://github.com/abarreir "abarreir (1 commits)")

---

Tags

loglaravellogginglumenlog viewerlog-reader

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/sn0rk64-laravel-log-viewer/health.svg)

```
[![Health](https://phpackages.com/badges/sn0rk64-laravel-log-viewer/health.svg)](https://phpackages.com/packages/sn0rk64-laravel-log-viewer)
```

###  Alternatives

[rap2hpoutre/laravel-log-viewer

A Laravel log reader

3.2k14.7M71](/packages/rap2hpoutre-laravel-log-viewer)[melihovv/laravel-log-viewer

A Laravel log viewer

1231.5k1](/packages/melihovv-laravel-log-viewer)[jackiedo/log-reader

An easy log reader and management tool for Laravel

151376.5k4](/packages/jackiedo-log-reader)[ytake/laravel-fluent-logger

fluent logger for laravel and lumen

63541.6k1](/packages/ytake-laravel-fluent-logger)

PHPackages © 2026

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