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

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

gopalindians/laravel-log-viewer
===============================

A Laravel log reader

01↑2900%PHP

Since Mar 23Pushed 1mo agoCompare

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

READMEChangelogDependenciesVersions (1)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/bf7cc09e5c1508d1fc4d75be48342910e64181d0424039200bf53ff051b8e7f4/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646d2f676f70616c696e6469616e732f6c61726176656c2d6c6f672d7669657765722e737667)](https://packagist.org/packages/gopalindians/laravel-log-viewer)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/2b98be6ed0174b924425f44db7980460d5db6a3bf0d472e4f41dd74d049530dc/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f7261703268706f757472652f6c61726176656c2d6c6f672d7669657765722f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/rap2hpoutre/laravel-log-viewer/?branch=master)[![Author](https://camo.githubusercontent.com/8f00c56d5cd1a069c69dc564395195e64acb6d5f41d7662a8b23563d7011ef7d/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f617574686f722d4072617032682d626c75652e737667)](https://twitter.com/rap2h) [![Author](https://camo.githubusercontent.com/851429e59797ffaffa98bf980cd4ac5caae2a899c28e76ee6814e5a1a06bc7b9/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f617574686f722d40676f70616c696e6469616e732d626c75652e737667)](https://twitter.com/gopalindians)

TL;DR
-----

[](#tldr)

Log Viewer for Laravel 6, 7, 8, 9, 10, 11 , 12 &amp; 13 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::class, '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

22

—

LowBetter than 22% of packages

Maintenance59

Moderate activity, may be stable

Popularity2

Limited adoption so far

Community19

Small or concentrated contributor base

Maturity11

Early-stage or recently created project

 Bus Factor1

Top contributor holds 71.9% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/db5d05d820dcff11750c95bbc7f80e6554ff619e9ebede8fafab2fbf0b013a72?d=identicon)[gopalindians](/maintainers/gopalindians)

---

Top Contributors

[![rap2hpoutre](https://avatars.githubusercontent.com/u/1575946?v=4)](https://github.com/rap2hpoutre "rap2hpoutre (146 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)")[![imanghafoori1](https://avatars.githubusercontent.com/u/6961695?v=4)](https://github.com/imanghafoori1 "imanghafoori1 (5 commits)")[![Agontuk](https://avatars.githubusercontent.com/u/5656440?v=4)](https://github.com/Agontuk "Agontuk (3 commits)")[![gopalindians](https://avatars.githubusercontent.com/u/1937433?v=4)](https://github.com/gopalindians "gopalindians (3 commits)")[![cino](https://avatars.githubusercontent.com/u/2735602?v=4)](https://github.com/cino "cino (3 commits)")[![scrutinizer-auto-fixer](https://avatars.githubusercontent.com/u/6253494?v=4)](https://github.com/scrutinizer-auto-fixer "scrutinizer-auto-fixer (3 commits)")[![sskl](https://avatars.githubusercontent.com/u/149003?v=4)](https://github.com/sskl "sskl (2 commits)")[![mikemand](https://avatars.githubusercontent.com/u/745184?v=4)](https://github.com/mikemand "mikemand (2 commits)")[![sergiy-petrov](https://avatars.githubusercontent.com/u/8986207?v=4)](https://github.com/sergiy-petrov "sergiy-petrov (2 commits)")[![AnthonyPorthouse](https://avatars.githubusercontent.com/u/5079595?v=4)](https://github.com/AnthonyPorthouse "AnthonyPorthouse (2 commits)")[![rtconner](https://avatars.githubusercontent.com/u/334533?v=4)](https://github.com/rtconner "rtconner (2 commits)")[![tanerkay](https://avatars.githubusercontent.com/u/224194?v=4)](https://github.com/tanerkay "tanerkay (1 commits)")[![thdaguin](https://avatars.githubusercontent.com/u/61747970?v=4)](https://github.com/thdaguin "thdaguin (1 commits)")[![timothymarois](https://avatars.githubusercontent.com/u/2489333?v=4)](https://github.com/timothymarois "timothymarois (1 commits)")[![tmdh](https://avatars.githubusercontent.com/u/18123729?v=4)](https://github.com/tmdh "tmdh (1 commits)")[![xembill](https://avatars.githubusercontent.com/u/8319808?v=4)](https://github.com/xembill "xembill (1 commits)")[![djoeycl](https://avatars.githubusercontent.com/u/53512949?v=4)](https://github.com/djoeycl "djoeycl (1 commits)")[![djunehor](https://avatars.githubusercontent.com/u/20708833?v=4)](https://github.com/djunehor "djunehor (1 commits)")

---

Tags

laravel13

### Embed Badge

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

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

###  Alternatives

[psr/log

Common interface for logging libraries

10.4k1.2B9.2k](/packages/psr-log)[itsgoingd/clockwork

php dev tools in your browser

5.9k27.6M94](/packages/itsgoingd-clockwork)[graylog2/gelf-php

A php implementation to send log-messages to a GELF compatible backend like Graylog2.

41838.2M138](/packages/graylog2-gelf-php)[bugsnag/bugsnag-psr-logger

Official Bugsnag PHP PSR Logger.

32132.5M2](/packages/bugsnag-bugsnag-psr-logger)[consolidation/log

Improved Psr-3 / Psr\\Log logger based on Symfony Console components.

15462.2M7](/packages/consolidation-log)[datadog/php-datadogstatsd

An extremely simple PHP datadogstatsd client

19124.6M15](/packages/datadog-php-datadogstatsd)

PHPackages © 2026

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