PHPackages                             jlxh/laravel-userlog - 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. jlxh/laravel-userlog

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

jlxh/laravel-userlog
====================

User log for laravel

v1.0.1(9y ago)219MITPHPPHP &gt;=5.5.9

Since Aug 1Pushed 9y ago1 watchersCompare

[ Source](https://github.com/jlxh/laravel-userlog)[ Packagist](https://packagist.org/packages/jlxh/laravel-userlog)[ Docs](https://github.com/jlxh/laravel-userlog)[ RSS](/packages/jlxh-laravel-userlog/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (2)Versions (15)Used By (0)

Laravel-UserLog (Laravel 5 Package)
===================================

[](#laravel-userlog-laravel-5-package)

[![Build Status](https://camo.githubusercontent.com/34fef85ba80546fcdf84ea40ced10b325dd8b45ab32ae2fa61cb620ab825418f/68747470733a2f2f7472617669732d63692e6f72672f6a6c78682f6c61726176656c2d757365726c6f672e737667)](https://travis-ci.org/jlxh/laravel-userlog)[![StyleCI](https://camo.githubusercontent.com/d99b4fc760dd551c9365a73dc408b54e709e44d30cebef994c27ce2390ed00d3/68747470733a2f2f7374796c6563692e696f2f7265706f732f36343634323032372f736869656c643f7374796c653d666c6174)](https://styleci.io/repos/64642027)[![Latest Stable Version](https://camo.githubusercontent.com/6f2013f67c0ffb142e4f284670529b56c82c383388d42fbc2035c5dd5bdea349/68747470733a2f2f706f7365722e707567782e6f72672f6a6c78682f6c61726176656c2d757365726c6f672f762f737461626c65)](https://packagist.org/packages/jlxh/laravel-userlog)[![Total Downloads](https://camo.githubusercontent.com/16286274ec7d77808d2c75fc8f82b6a2c31b545f8ee2cc3f8815086fd75aea7e/68747470733a2f2f706f7365722e707567782e6f72672f6a6c78682f6c61726176656c2d757365726c6f672f646f776e6c6f616473)](https://packagist.org/packages/jlxh/laravel-userlog)[![Latest Unstable Version](https://camo.githubusercontent.com/48adb07c290abc4943cb7c1caf3d064efb768bf19642224ee432fdaeef14f6de/68747470733a2f2f706f7365722e707567782e6f72672f6a6c78682f6c61726176656c2d757365726c6f672f762f756e737461626c65)](https://packagist.org/packages/jlxh/laravel-userlog)[![License](https://camo.githubusercontent.com/6816d9fc2fe490f4fe076caacff08c48bf95cd4dde5d14f78358d1e206bd7b16/68747470733a2f2f706f7365722e707567782e6f72672f6a6c78682f6c61726176656c2d757365726c6f672f6c6963656e7365)](https://packagist.org/packages/jlxh/laravel-userlog)

Laravel-UserLog is a succinct and flexible way to add user logs to **Laravel 5**.

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

[](#installation)

In order to install Laravel 5 UserLog, just add

```
"jlxh/laravel-userlog": ">=1.*"

```

to your composer.json. Then run `composer install` or `composer update`.

or you can run the `composer require` command from your terminal:

```
composer require jlxh/laravel:1.*

```

Then in your `config/app.php` add

```
    Jlxh\UserLog\UserLogServiceProvider::class,
```

in the `providers` array and

```
    'UserLog'   => Jlxh\UserLog\UserLogFacade::class,
```

to the `aliases` array.

Configuration
-------------

[](#configuration)

You can also publish the configuration for this package to further customize table names and model namespaces. Just use `php artisan vendor:publish` and a `userlog.php` file will be created in your app/config directory.

Now generate the UserLog migration:

```
php artisan userlog:migration
```

It will generate the `_userlog_setup_tables.php` migration. You may now run it with the artisan migrate command:

```
php artisan migrate
```

After the migration, one new table will be present:

- `user-log` — stores user logs

Usage
-----

[](#usage)

### Concepts

[](#concepts)

Let's create log as following:

```
use UserLog;
...

$log = UserLog::create(1, 'title', 'A', 'data', 'sql');
```

Troubleshooting
---------------

[](#troubleshooting)

License
-------

[](#license)

Entrust is free software distributed under the terms of the MIT license.

Contribution guidelines
-----------------------

[](#contribution-guidelines)

Support follows PSR-1 and PSR-4 PHP coding standards, and semantic versioning.

Please report any issue you find in the issues page. Pull requests are welcome.

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity66

Established project with proven stability

 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 ~1 days

Total

11

Last Release

3606d ago

Major Versions

v0.9 → v1.02016-08-15

### Community

Maintainers

![](https://www.gravatar.com/avatar/1cb83bd1728ef7db33daaf42b7bc860053e0d61c1d46c6ff043546ff7cb9e86f?d=identicon)[iat](/maintainers/iat)

---

Top Contributors

[![yaoshanliang](https://avatars.githubusercontent.com/u/5028569?v=4)](https://github.com/yaoshanliang "yaoshanliang (42 commits)")

---

Tags

loglaravel

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/jlxh-laravel-userlog/health.svg)

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

###  Alternatives

[guanguans/laravel-exception-notify

Monitor exception and report to the notification channels(Log、Mail、AnPush、Bark、Chanify、DingTalk、Discord、Gitter、GoogleChat、IGot、Lark、Mattermost、MicrosoftTeams、NowPush、Ntfy、Push、Pushback、PushBullet、PushDeer、PushMe、Pushover、PushPlus、QQ、RocketChat、ServerChan、ShowdocPush、SimplePush、Slack、Telegram、WeWork、WPush、XiZhi、YiFengChuanHua、ZohoCliq、ZohoCliqWebHook、Zulip).

14844.4k1](/packages/guanguans-laravel-exception-notify)[open-telemetry/opentelemetry-auto-laravel

OpenTelemetry auto-instrumentation for Laravel

592.4M8](/packages/open-telemetry-opentelemetry-auto-laravel)[hosmelq/laravel-logsnag

Integrate the power of LogSnag's real-time event tracking into your Laravel application.

238.4k](/packages/hosmelq-laravel-logsnag)

PHPackages © 2026

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