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

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

kolamitin/laravel-log-viewer
============================

Allows to view Laravel log in a pretty way

v1.7.0(5y ago)010.8kMITPHPPHP &gt;=5.4.0

Since Nov 24Pushed 5y agoCompare

[ Source](https://github.com/NickMitin/laravel-log-viewer)[ Packagist](https://packagist.org/packages/kolamitin/laravel-log-viewer)[ RSS](/packages/kolamitin-laravel-log-viewer/feed)WikiDiscussions master Synced yesterday

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

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

[](#laravel-log-viewer)

[![Packagist](https://camo.githubusercontent.com/505e8a855a8dd214284b40c027b0ac39bb9684cdffd5757f944f29fedda491fe/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7261703268706f757472652f6c61726176656c2d6c6f672d7669657765722e737667)](https://packagist.org/packages/rap2hpoutre/laravel-log-viewer)[![Packagist](https://camo.githubusercontent.com/a2c226cea5b4865eb57d3cca3f4e8bc61c360e1a3e183be1c59448a5e7cefe89/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7261703268706f757472652f6c61726176656c2d6c6f672d7669657765722e737667)](https://packagist.org/packages/rap2hpoutre/laravel-log-viewer)[![Packagist](https://camo.githubusercontent.com/58a19e14d6d8a3f0fb7409f5ddf7a1d703993faf157de465d692873ed7e7aa99/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646d2f7261703268706f757472652f6c61726176656c2d6c6f672d7669657765722e737667)](https://packagist.org/packages/rap2hpoutre/laravel-log-viewer)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/2b98be6ed0174b924425f44db7980460d5db6a3bf0d472e4f41dd74d049530dc/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f7261703268706f757472652f6c61726176656c2d6c6f672d7669657765722f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/rap2hpoutre/laravel-log-viewer/?branch=master)[![Build Status](https://camo.githubusercontent.com/ae68af402d6418f17379eae7cae72dbde4c2cc2c567daf9b1d272bbd270a6b92/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f7261703268706f757472652f6c61726176656c2d6c6f672d7669657765722f6261646765732f6275696c642e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/rap2hpoutre/laravel-log-viewer/build-status/master)[![Codacy Badge](https://camo.githubusercontent.com/cd8344120f9b30adbd25c818fbff9a9899e233f3dcd9d9c0f4e7a84daf953968/68747470733a2f2f6170692e636f646163792e636f6d2f70726f6a6563742f62616467652f47726164652f3762653761303562303763393466333139656333356639356134643634303734)](https://www.codacy.com/app/rap2hpoutre/laravel-log-viewer)[![Author](https://camo.githubusercontent.com/8f00c56d5cd1a069c69dc564395195e64acb6d5f41d7662a8b23563d7011ef7d/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f617574686f722d4072617032682d626c75652e737667)](https://twitter.com/rap2h)

TL;DR
-----

[](#tldr)

Log Viewer for Laravel 5, 6 (compatible with 4.2 too) and Lumen. **Install with composer, create a route to `LogViewerController`**. No public assets, no vendor routes, works with and/or without log rotate. Inspired by Micheal Mand's [Laravel 4 log viewer](https://github.com/mikemand/logviewer) (works only with laravel 4.1)

What ?
------

[](#what-)

Small log viewer for laravel. Looks like this:

[![capture d ecran 2014-12-01 a 10 37 18](https://cloud.githubusercontent.com/assets/1575946/5243642/8a00b83a-7946-11e4-8bad-5c705f328bcc.png)](https://cloud.githubusercontent.com/assets/1575946/5243642/8a00b83a-7946-11e4-8bad-5c705f328bcc.png)

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

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

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

```

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');
});
```

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

35

—

LowBetter than 79% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community19

Small or concentrated contributor base

Maturity73

Established project with proven stability

 Bus Factor1

Top contributor holds 70.5% 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 ~28 days

Recently: every ~52 days

Total

78

Last Release

2003d ago

Major Versions

v0.22.1 → v1.0.02019-01-02

### Community

Maintainers

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

---

Top Contributors

[![rap2hpoutre](https://avatars.githubusercontent.com/u/1575946?v=4)](https://github.com/rap2hpoutre "rap2hpoutre (136 commits)")[![NickMitin](https://avatars.githubusercontent.com/u/95453?v=4)](https://github.com/NickMitin "NickMitin (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)")[![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)")[![cino](https://avatars.githubusercontent.com/u/2735602?v=4)](https://github.com/cino "cino (3 commits)")[![sskl](https://avatars.githubusercontent.com/u/149003?v=4)](https://github.com/sskl "sskl (2 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)")[![rtconner](https://avatars.githubusercontent.com/u/334533?v=4)](https://github.com/rtconner "rtconner (2 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)")[![Solinx](https://avatars.githubusercontent.com/u/2049212?v=4)](https://github.com/Solinx "Solinx (1 commits)")[![abarreir](https://avatars.githubusercontent.com/u/1942346?v=4)](https://github.com/abarreir "abarreir (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[spatie/laravel-health

Monitor the health of a Laravel application

85810.0M83](/packages/spatie-laravel-health)[beyondcode/laravel-server-timing

Add Server-Timing header information from within your Laravel apps.

5712.0M1](/packages/beyondcode-laravel-server-timing)[rollbar/rollbar-laravel

Rollbar error monitoring integration for Laravel projects

14110.4M7](/packages/rollbar-rollbar-laravel)[yadahan/laravel-authentication-log

Laravel Authentication Log provides authentication logger and notification for Laravel.

416632.8k5](/packages/yadahan-laravel-authentication-log)[kitloong/laravel-app-logger

Laravel log for your application

101.2M8](/packages/kitloong-laravel-app-logger)[label84/laravel-auth-log

Log user authentication actions in Laravel.

3654.0k](/packages/label84-laravel-auth-log)

PHPackages © 2026

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