PHPackages                             roman444uk/laravel-apilogger - 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. roman444uk/laravel-apilogger

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

roman444uk/laravel-apilogger
============================

Small laravel package for viewing api logs which can be used in debugging.

1.0.7(2y ago)01.1kMITPHP

Since Feb 3Pushed 2y ago1 watchersCompare

[ Source](https://github.com/roman444uk/laravel-apilogger)[ Packagist](https://packagist.org/packages/roman444uk/laravel-apilogger)[ RSS](/packages/roman444uk-laravel-apilogger/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (6)DependenciesVersions (9)Used By (0)

API Logger
==========

[](#api-logger)

This is a small package that can helps in debugging api logs. It can log request method, url, duration, request payload, which models are retrieved, controller and method.

[![screenshot](screenshot.png)](screenshot.png)

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

[](#installation)

1. Install the package via composer

```
composer require awt/apilogger @dev
```

Usage
-----

[](#usage)

1. Laravel 5.5 and higher uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider. If you use a lower version of Laravel you must register it in your *app.php* file:

```
RMN\Providers\ApiLogServiceProvider::class
```

2. Publish the config file with:

```
php artisan vendor:publish --tag=config --provider="RMN\Providers\ApiLogServiceProvider"
```

The config file is called *apilogs.php*. Currently supported drivers are *db* and *file*

By default the logger will use *file* to log the data. But if you want to use Database for logging, migrate table by using

You can also configure which fields should not be logged like passwords, secrets, etc.

***You dont need to migrate if you are just using file driver***

```
php artisan migrate
```

3. Add middleware named ***apilogger*** to the route or controller you want to log data

```
//in route.php or web.php
Route::middleware('apilogger')->post('/test',function(){
    return response()->json("test");
});
```

4. Dashboard can be accessible via ***yourdomain.com/apilogs***

Clear the logs
--------------

[](#clear-the-logs)

You can permenently clear the logs by using the following command.

```
php artisan apilog:clear
```

Implement your own log driver
-----------------------------

[](#implement-your-own-log-driver)

1. Your driver class ***must*** implement ApiLoggerInterface for saving, retrieving and deleting the logs.
2. Your driver class may extends `AbstractLogger` class which provide helpful methods such as logData and mapArrayToModel.
3. Substitude in your new class name instead of `db` or `file` as the driver. eg: `\App\Apilogs\CustomLogger::class`

Security
--------

[](#security)

### Add Auth

[](#add-auth)

In config/apilog.php you have 'route' option, you can change the prefix and add auth middleware or any other middleware

```
'route'          => [
    'prefix'     => 'apilogs',
    'middleware' => null,//Can be change to ['auth'] or others
]
```

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

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity47

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

8

Last Release

829d ago

### Community

Maintainers

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

---

Top Contributors

[![roman444uk](https://avatars.githubusercontent.com/u/6277070?v=4)](https://github.com/roman444uk "roman444uk (7 commits)")

### Embed Badge

![Health badge](/badges/roman444uk-laravel-apilogger/health.svg)

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

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