PHPackages                             itas/laravel-audit - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. itas/laravel-audit

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

itas/laravel-audit
==================

Data-audit features for Laravel Application.

v1.0.2(7y ago)112MITPHP

Since Feb 19Pushed 7y agoCompare

[ Source](https://github.com/luoyangpeng/laravel-audit)[ Packagist](https://packagist.org/packages/itas/laravel-audit)[ RSS](/packages/itas-laravel-audit/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (4)Versions (4)Used By (0)

Laravel-audit
=============

[](#laravel-audit)

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

[](#installation)

The laravel-audit Service Provider can be installed via [Composer](http://getcomposer.org) by requiring the `itas/laravel-audit` package and setting the `minimum-stability` to `dev` (required for Laravel 5) in your project's `composer.json`.

```
{
    "require": {
        "itas/laravel-audit": "~1.0"
    }
}
```

or

Require this package with composer:

```
composer require itas/laravel-audit

```

Update your packages with `composer update` or install with `composer install`.

Usage
-----

[](#usage)

To use the laravel-audit Service Provider, you must register the provider when bootstrapping your Laravel application. There are essentially two ways to do this.

Find the `providers` key in `config/app.php` and register the laravel-audit Service Provider.

```
    'providers' => [
        // ...
        itas\LaravelAudit\AuditServiceProvider::class,
    ]
```

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

[](#configuration)

To use your own settings, publish config.

`$ php artisan vendor:publish`

`config/audit.php`

Last Step
---------

[](#last-step)

run: `$ php artisan migrate`

Demo
----

[](#demo)

```
