PHPackages                             digitalcloud/laravel-blameable - 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. [Database &amp; ORM](/categories/database)
4. /
5. digitalcloud/laravel-blameable

ActiveLibrary[Database &amp; ORM](/categories/database)

digitalcloud/laravel-blameable
==============================

Laravel package allow you to add created/updated by attributes on eloquent models

v1.1(7y ago)1543.8k↓50.8%8[4 issues](https://github.com/DigitalCloud/laravel-blameable/issues)[2 PRs](https://github.com/DigitalCloud/laravel-blameable/pulls)4MITPHPPHP &gt;=7.1.0

Since Jan 14Pushed 4y ago4 watchersCompare

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

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

[![Latest Stable Version](https://camo.githubusercontent.com/57a295db654d5ef385c8676e8213e5486b8e4a0205250873db1f416c1e595b9a/68747470733a2f2f706f7365722e707567782e6f72672f6469676974616c636c6f75642f6c61726176656c2d626c616d6561626c652f762f737461626c65)](https://packagist.org/packages/digitalcloud/laravel-blameable)[![Total Downloads](https://camo.githubusercontent.com/5bc486c81719992273acd69cad5a35e6acd492d5bffe59f57bb1e61bae7fbc06/68747470733a2f2f706f7365722e707567782e6f72672f6469676974616c636c6f75642f6c61726176656c2d626c616d6561626c652f646f776e6c6f616473)](https://packagist.org/packages/digitalcloud/laravel-blameable)

Laravel Blameable.
==================

[](#laravel-blameable)

This package allow you to track the creator, updater and deleter of eloquent models.

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

[](#installation)

You can install the package via composer:

```
composer require digitalcloud/laravel-blameable
```

In Laravel 5.5 the service provider will automatically get registered. In older versions of the framework just add the service provider in config/app.php file:

```
    'providers' => [
        DigitalCloud\Blameable\BlameableServiceProvider::class,
    ];
```

You can publish the config file with:

```
    php artisan vendor:publish --provider="DigitalCloud\Blameable\BlameableServiceProvider" --tag="config"
```

When published, the config/blameable.php config file contains:

```
