lais/historiae

This package is abandoned and no longer maintained. No replacement package was suggested.

Historiae provides history logging support to Laravel.

v1.1.0 2016-11-21 13:52 UTC

This package is not auto-updated.

Last update: 2021-04-27 07:31:24 UTC


README

Total Downloads Latest Stable Version License

Introduction

Historiae provides history logging support to Laravel.

License

Historiae is open-sourced software licensed under the MIT license.

Installation

To get started, install Historiae via the Composer package manager:

composer require lais/historiae

Configuration

After installing the library, register the Historiae\HistoriaeServiceProvider in your config/app.php configuration file:

'providers' => [
    // Other service providers...

    Historiae\HistoriaeServiceProvider::class,
],

The Historiae service provider registers its own database migration directory with the framework, so you should migrate your database after registering the provider. The Historiae migrations will create the tables your application needs to store access logs and change logs:

php artisan migrate

Next, you should run the vendor:publish command. This command will publish Historiae views, translations and configuration files, so you'll be able to customize your application as you see fit.

php artisan vendor:publish