PHPackages                             sagar290/laravel-logable - 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. sagar290/laravel-logable

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

sagar290/laravel-logable
========================

This package is used for logging every incoming http route request.

v1.0.1(4y ago)66[3 issues](https://github.com/sagar290/laravel-logable/issues)GPL-2.0-or-laterPHPPHP ^7.4||^8.0

Since Feb 3Pushed 4y ago1 watchersCompare

[ Source](https://github.com/sagar290/laravel-logable)[ Packagist](https://packagist.org/packages/sagar290/laravel-logable)[ RSS](/packages/sagar290-laravel-logable/feed)WikiDiscussions master Synced yesterday

READMEChangelog (2)DependenciesVersions (3)Used By (0)

Laravel Logable is a simple way to log http request in your Laravel application.
--------------------------------------------------------------------------------

[](#laravel-logable-is-a-simple-way-to-log-http-request-in-your-laravel-application)

Requirements
------------

[](#requirements)

php &gt;= 7.4

Laravel version &gt;= 6.0

Installation
------------

[](#installation)

```
composer require sagar290/laravel-logable

```

You need add this configuration in `config/logging.php` file in channels array.

```
'channels' => [
    .....
    'logable' => [
        'driver' => 'daily',
        'path' => storage_path('logs/logable.log'),
        'level' => 'debug',
    ],
]
```

Add this middleware to your `app/Http/Kernel.php` file.

```
protected $middleware = [
    ...
    \Sagar290\Logable\Middleware\RouteLogMiddleware::class,
];
```

Publish configuration file.

```
php artisan vendor:publish --provider="Sagar290\Logable\LogableServiceProvider" --tag="config"
```

Commands
--------

[](#commands)

### monitoring logs

[](#monitoring-logs)

```
php artisan logs:monitor
```

[![image laravel logable](./assets/Screenshot2.png)](./assets/Screenshot2.png)

This will live monitor all incoming requests and log them to the log file.

### Clear logs

[](#clear-logs)

```
php artisan logs:clear
```

This will clear all logs.

Conclusion
----------

[](#conclusion)

Please feel free raise an issue if you have problem. Also, feel free to star this repository on [Github](https://github.com/sagar290/laravel-logable). Contribute to this project by making a pull request.

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance10

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

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

Every ~0 days

Total

2

Last Release

1557d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6b6f57b5e998811972fc43fa808829f4560d46efb7b7fbe2ecb80c1da72dedde?d=identicon)[sagar290](/maintainers/sagar290)

---

Top Contributors

[![sagar290](https://avatars.githubusercontent.com/u/7631656?v=4)](https://github.com/sagar290 "sagar290 (12 commits)")

---

Tags

laravellaravel-loggerlaravel-route-loglogginglogging-library

### Embed Badge

![Health badge](/badges/sagar290-laravel-logable/health.svg)

```
[![Health](https://phpackages.com/badges/sagar290-laravel-logable/health.svg)](https://phpackages.com/packages/sagar290-laravel-logable)
```

###  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)
