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

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

afzalsabbir/logmanager
======================

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

v4.0.0(3y ago)095[1 PRs](https://github.com/AfzalSabbir/logmanager/pulls)proprietaryPHPCI passing

Since May 29Pushed 1y ago1 watchersCompare

[ Source](https://github.com/AfzalSabbir/logmanager)[ Packagist](https://packagist.org/packages/afzalsabbir/logmanager)[ Docs](https://github.com/afzalsabbir/LogManager)[ RSS](/packages/afzalsabbir-logmanager/feed)WikiDiscussions main Synced 1w ago

READMEChangelog (1)Dependencies (3)Versions (4)Used By (0)

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

[](#backpacklogmanager)

[![Latest Version on Packagist](https://camo.githubusercontent.com/d10c3b996aa047821e49f99eb6f10f053b759eb0a347f7db7c1d4d5b50e21de3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f61667a616c7361626269722f6c6f676d616e616765722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/afzalsabbir/logmanager)[![Software License](https://camo.githubusercontent.com/5a202d5327ab4ae3bf5cc50fcfa3d2f0823d818a4f115a027d8176dcb996c4d4/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d6475616c2d626c75653f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/6c940660c887e984ebb9ef3adba7362f9a6ac844de92536d687daa71931ab43c/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f61667a616c7361626269722f6c6f676d616e616765722f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/afzalsabbir/logmanager)[![Coverage Status](https://camo.githubusercontent.com/171a86e0517f3e6fab7ac75ed73c25b9641bfc36eb542c6642bb02d916a61d83/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f61667a616c7361626269722f6c6f676d616e616765722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/afzalsabbir/logmanager/code-structure)[![Quality Score](https://camo.githubusercontent.com/c8435fffdd373d3c0fce7b41ae8f7ffb89568dbccf0e594b0544ff59076fe42f/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f61667a616c7361626269722f6c6f676d616e616765722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/afzalsabbir/logmanager)[![Style CI](https://camo.githubusercontent.com/a3b441889d64253fd32ec3a963339809166b296f7d8b02ccd15f4470f700f7f8/68747470733a2f2f7374796c6563692e696f2f7265706f732f35323838363531322f736869656c64)](https://styleci.io/repos/52886512)[![Total Downloads](https://camo.githubusercontent.com/7df58c6f76a5a5c2fd824fe83eab4c7b6fb0c3963a59eac3edae584a054a59d4/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f61667a616c7361626269722f6c6f676d616e616765722e7376673f7374796c653d666c61742d737175617265)](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 afzalsabbir/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://user-images.githubusercontent.com/1032474/131472960-be77e37c-313d-4049-ae54-95248cf3ad48.gif)](https://user-images.githubusercontent.com/1032474/131472960-be77e37c-313d-4049-ae54-95248cf3ad48.gif)

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/afzalsabbir/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

27

—

LowBetter than 49% of packages

Maintenance33

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

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

Unknown

Total

1

Last Release

1448d ago

### Community

Maintainers

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

---

Top Contributors

[![AfzalSabbir](https://avatars.githubusercontent.com/u/39697431?v=4)](https://github.com/AfzalSabbir "AfzalSabbir (5 commits)")

---

Tags

laravellogslog managerlog interfacebackpack

###  Code Quality

TestsPHPUnit

### Embed Badge

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

```
[![Health](https://phpackages.com/badges/afzalsabbir-logmanager/health.svg)](https://phpackages.com/packages/afzalsabbir-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)
