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

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

backpack/logmanager
===================

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

5.1.1(7mo ago)274731.7k↓35.1%543proprietaryPHPCI passing

Since Jun 26Pushed 2w ago14 watchersCompare

[ Source](https://github.com/Laravel-Backpack/LogManager)[ Packagist](https://packagist.org/packages/backpack/logmanager)[ Docs](https://github.com/laravel-backpack/LogManager)[ RSS](/packages/backpack-logmanager/feed)WikiDiscussions main Synced 2w ago

READMEChangelog (10)Dependencies (1)Versions (67)Used By (3)

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 menu item for it
# For Backpack v6
php artisan backpack:add-menu-content ""
# For Backpack v5 or v4
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.

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

66

—

FairBetter than 99% of packages

Maintenance82

Actively maintained with recent releases

Popularity57

Moderate usage in the ecosystem

Community35

Small or concentrated contributor base

Maturity78

Established project with proven stability

 Bus Factor1

Top contributor holds 72.7% 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 ~61 days

Recently: every ~208 days

Total

64

Last Release

222d ago

Major Versions

1.0.2 → 2.0.02016-03-03

2.3.27 → 3.0.02019-09-24

3.0.5 → 4.1.x-dev2020-05-06

v4.0.11 → v5.0.02023-07-01

### Community

Maintainers

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

---

Top Contributors

[![tabacitu](https://avatars.githubusercontent.com/u/1032474?v=4)](https://github.com/tabacitu "tabacitu (160 commits)")[![pxpm](https://avatars.githubusercontent.com/u/7188159?v=4)](https://github.com/pxpm "pxpm (12 commits)")[![ShamarKellman](https://avatars.githubusercontent.com/u/4120411?v=4)](https://github.com/ShamarKellman "ShamarKellman (4 commits)")[![twmbx](https://avatars.githubusercontent.com/u/536306?v=4)](https://github.com/twmbx "twmbx (3 commits)")[![makss](https://avatars.githubusercontent.com/u/2004844?v=4)](https://github.com/makss "makss (3 commits)")[![mariovillani](https://avatars.githubusercontent.com/u/3393945?v=4)](https://github.com/mariovillani "mariovillani (3 commits)")[![karandatwani92](https://avatars.githubusercontent.com/u/8214221?v=4)](https://github.com/karandatwani92 "karandatwani92 (3 commits)")[![Ghitu](https://avatars.githubusercontent.com/u/7511010?v=4)](https://github.com/Ghitu "Ghitu (3 commits)")[![StyleCIBot](https://avatars.githubusercontent.com/u/11048387?v=4)](https://github.com/StyleCIBot "StyleCIBot (3 commits)")[![ibpavlov](https://avatars.githubusercontent.com/u/3340235?v=4)](https://github.com/ibpavlov "ibpavlov (2 commits)")[![bladrunner](https://avatars.githubusercontent.com/u/2669602?v=4)](https://github.com/bladrunner "bladrunner (2 commits)")[![promatik](https://avatars.githubusercontent.com/u/1838187?v=4)](https://github.com/promatik "promatik (2 commits)")[![maurohmartinez](https://avatars.githubusercontent.com/u/33960976?v=4)](https://github.com/maurohmartinez "maurohmartinez (2 commits)")[![vonsogt](https://avatars.githubusercontent.com/u/35516476?v=4)](https://github.com/vonsogt "vonsogt (2 commits)")[![aand18](https://avatars.githubusercontent.com/u/36073609?v=4)](https://github.com/aand18 "aand18 (2 commits)")[![dependabot-preview[bot]](https://avatars.githubusercontent.com/in/2141?v=4)](https://github.com/dependabot-preview[bot] "dependabot-preview[bot] (2 commits)")[![Xayer](https://avatars.githubusercontent.com/u/1837767?v=4)](https://github.com/Xayer "Xayer (1 commits)")[![BernhardK91](https://avatars.githubusercontent.com/u/5526334?v=4)](https://github.com/BernhardK91 "BernhardK91 (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)")

---

Tags

laravellogslog managerlog interfacebackpack

### Embed Badge

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

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

###  Alternatives

[jackiedo/log-reader

An easy log reader and management tool for Laravel

151435.1k4](/packages/jackiedo-log-reader)[backpack/theme-tabler

UI for Backpack v6 that uses Tabler and Bootstrap v5.

37664.1k](/packages/backpack-theme-tabler)[kssadi/log-tracker

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

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

PHPackages © 2026

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