PHPackages                             romansev/logmanager - 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. romansev/logmanager

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

romansev/logmanager
===================

An interface to preview, download and delete Laravel log files.

v10.1(4y ago)015proprietaryPHP

Since Jun 26Pushed 4y agoCompare

[ Source](https://github.com/Romansev/LogManager)[ Packagist](https://packagist.org/packages/romansev/logmanager)[ Docs](https://github.com/laravel-backpack/LogManager)[ RSS](/packages/romansev-logmanager/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (10)Dependencies (3)Versions (60)Used By (0)

Backpack\\LogManager
====================

[](#backpacklogmanager)

[![Latest Version on Packagist](https://camo.githubusercontent.com/ee40708ec280c6f9debdf820233d4e60774bedff160a1021ce70dfaccc744d2e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6261636b7061636b2f6c6f676d616e616765722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/backpack/logmanager)[![Software License](https://camo.githubusercontent.com/5a202d5327ab4ae3bf5cc50fcfa3d2f0823d818a4f115a027d8176dcb996c4d4/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d6475616c2d626c75653f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/699b39b94d81e13c5f16539c5e4641957f944fef7bbe58c849f9d0356621cfb0/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6c61726176656c2d6261636b7061636b2f6c6f676d616e616765722f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/laravel-backpack/logmanager)[![Coverage Status](https://camo.githubusercontent.com/4974760613a8459760cfd40aee3a049f608f22f6f84af6d7e0783633ff981199/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f6c61726176656c2d6261636b7061636b2f6c6f676d616e616765722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-backpack/logmanager/code-structure)[![Quality Score](https://camo.githubusercontent.com/433a041ceec3853f1875058f849321ab82aba4c363700c43e03be0be1105b562/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6c61726176656c2d6261636b7061636b2f6c6f676d616e616765722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-backpack/logmanager)[![Style CI](https://camo.githubusercontent.com/a3b441889d64253fd32ec3a963339809166b296f7d8b02ccd15f4470f700f7f8/68747470733a2f2f7374796c6563692e696f2f7265706f732f35323838363531322f736869656c64)](https://styleci.io/repos/52886512)[![Total Downloads](https://camo.githubusercontent.com/2d797067b9ef0957586d0a9b9d3ab8192e6263b3686d2ccb71f8cd1d26cdb2e1/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6261636b7061636b2f6c6f676d616e616765722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/backpack/crud)

A simple interface to preview, download and delete Laravel log files.

Install
-------

[](#install)

```
# install the package with composer
composer require backpack/logmanager

# [optional] Add a sidebar_content item for it
php artisan backpack:add-sidebar-content " Logs"
```

**For a better user experience, make sure Laravel is configured to create a new log file for each day.** That way, you can browse log entries by day too. You can do that in your `config/logging.php` file.

From a default Laravel configuration, make sure the `daily` channel is inside the `stack` channel, which is used by default:

```
    'channels' => [
        'stack' => [
            'driver'   => 'stack',
            'channels' => ['daily'],
        ],
        'single' => [
            'driver' => 'single',
            'path'   => storage_path('logs/laravel.log'),
            'level'  => 'debug',
        ],
        'daily' => [
            'driver' => 'daily',
            'path'   => storage_path('logs/laravel.log'),
            'level'  => 'debug',
            'days'   => 7,
        ],
```

You can change the number of days, or path, level, etc inside this the `daily` channel.

Usage
-----

[](#usage)

Add a menu element for it or just try at **your-project-domain/admin/log**

[![LogManager interface](https://camo.githubusercontent.com/11a1813813fe0db05e2031b37c72359d158b44212af2d83dbbd70722bb36b0c7/68747470733a2f2f6261636b7061636b666f726c61726176656c2e636f6d2f75706c6f6164732f73637265656e73686f74732f6c6f675f6c6973742e706e67)](https://camo.githubusercontent.com/11a1813813fe0db05e2031b37c72359d158b44212af2d83dbbd70722bb36b0c7/68747470733a2f2f6261636b7061636b666f726c61726176656c2e636f6d2f75706c6f6164732f73637265656e73686f74732f6c6f675f6c6973742e706e67)

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Overwriting Functionality
-------------------------

[](#overwriting-functionality)

If you need to modify how this works in a project:

- create a `routes/backpack/logmanager.php` file; the package will see that, and load *your* routes file, instead of the one in the package;
- create controllers/models that extend the ones in the package, and use those in your new routes file;
- modify anything you'd like in the new controllers/models;

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Please **[subscribe to the Backpack Newsletter](http://backpackforlaravel.com/newsletter)** so you can find out about any security updates, breaking changes or major features. We send an email every 1-2 months.

Credits
-------

[](#credits)

- [Cristian Tabacitu](https://tabacitu.ro)
- [All Contributors](../../contributors)

License
-------

[](#license)

Backpack is free for non-commercial use and 49 EUR/project for commercial use. Please see [License File](LICENSE.md) and [backpackforlaravel.com](https://backpackforlaravel.com/#pricing) for more information.

Hire us
-------

[](#hire-us)

We've spend more than 10.000 hours creating, polishing and maintaining administration panels on Laravel. We've developed e-Commerce, e-Learning, ERPs, social networks, payment gateways and much more. We've worked on admin panels *so much*, that we've created one of the most popular software in its niche - just from making public what was repetitive in our projects.

If you are looking for a developer/team to help you build an admin panel on Laravel, look no further. You'll have a difficult time finding someone with more experience &amp; enthusiasm for this. This is *what we do*. [Contact us](https://backpackforlaravel.com/need-freelancer-or-development-team). Let's see if we can work together.

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity77

Established project with proven stability

 Bus Factor1

Top contributor holds 82.1% 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 ~40 days

Total

59

Last Release

1630d ago

Major Versions

1.0.2 → 2.0.02016-03-03

2.3.27 → 3.0.02019-09-24

v3.x-dev → 4.1.x-dev2020-05-06

v4.0.5 → v10.12021-11-29

### Community

Maintainers

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

---

Top Contributors

[![tabacitu](https://avatars.githubusercontent.com/u/1032474?v=4)](https://github.com/tabacitu "tabacitu (138 commits)")[![ShamarKellman](https://avatars.githubusercontent.com/u/4120411?v=4)](https://github.com/ShamarKellman "ShamarKellman (4 commits)")[![Ghitu](https://avatars.githubusercontent.com/u/7511010?v=4)](https://github.com/Ghitu "Ghitu (3 commits)")[![twmbx](https://avatars.githubusercontent.com/u/536306?v=4)](https://github.com/twmbx "twmbx (3 commits)")[![ibpavlov](https://avatars.githubusercontent.com/u/3340235?v=4)](https://github.com/ibpavlov "ibpavlov (2 commits)")[![promatik](https://avatars.githubusercontent.com/u/1838187?v=4)](https://github.com/promatik "promatik (2 commits)")[![aand18](https://avatars.githubusercontent.com/u/36073609?v=4)](https://github.com/aand18 "aand18 (2 commits)")[![vonsogt](https://avatars.githubusercontent.com/u/35516476?v=4)](https://github.com/vonsogt "vonsogt (2 commits)")[![dependabot-preview[bot]](https://avatars.githubusercontent.com/in/2141?v=4)](https://github.com/dependabot-preview[bot] "dependabot-preview[bot] (2 commits)")[![7ute](https://avatars.githubusercontent.com/u/8693407?v=4)](https://github.com/7ute "7ute (1 commits)")[![Xayer](https://avatars.githubusercontent.com/u/1837767?v=4)](https://github.com/Xayer "Xayer (1 commits)")[![cenoura](https://avatars.githubusercontent.com/u/1128688?v=4)](https://github.com/cenoura "cenoura (1 commits)")[![chancezeus](https://avatars.githubusercontent.com/u/2089196?v=4)](https://github.com/chancezeus "chancezeus (1 commits)")[![EmanueleCoppola](https://avatars.githubusercontent.com/u/12816305?v=4)](https://github.com/EmanueleCoppola "EmanueleCoppola (1 commits)")[![iMokhles](https://avatars.githubusercontent.com/u/1247248?v=4)](https://github.com/iMokhles "iMokhles (1 commits)")[![kamioon](https://avatars.githubusercontent.com/u/3734100?v=4)](https://github.com/kamioon "kamioon (1 commits)")[![pavlentij](https://avatars.githubusercontent.com/u/971128?v=4)](https://github.com/pavlentij "pavlentij (1 commits)")[![Romansev](https://avatars.githubusercontent.com/u/8430140?v=4)](https://github.com/Romansev "Romansev (1 commits)")[![selcukcukur](https://avatars.githubusercontent.com/u/5716652?v=4)](https://github.com/selcukcukur "selcukcukur (1 commits)")

---

Tags

laravellogslog managerlog interfacebackpack

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/romansev-logmanager/health.svg)

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

###  Alternatives

[backpack/logmanager

An interface to preview, download and delete Laravel log files.

274688.9k3](/packages/backpack-logmanager)[jackiedo/log-reader

An easy log reader and management tool for Laravel

151376.5k4](/packages/jackiedo-log-reader)[kssadi/log-tracker

A powerful, intuitive, and efficient log viewer for Laravel applications.

264.8k](/packages/kssadi-log-tracker)

PHPackages © 2026

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