lais / historiae
Historiae provides history logging support to Laravel.
Requires
- php: >=5.6.4
- illuminate/container: ~5.3
- illuminate/contracts: ~5.3
- illuminate/database: ~5.3
- illuminate/http: ~5.3
- illuminate/support: ~5.3
This package is not auto-updated.
Last update: 2021-04-27 07:31:24 UTC
README
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