Auditor
Auditor is a PHP package to retrieve audit json data from Laravel 5 and present it in table format., (*1)
Please note this is a work in progress., (*2)
Installation
This package requires PHP 5.6+, and includes a Laravel 5 Service Provider., (*3)
To install through composer include the package in your composer.json
., (*4)
"midnite81/auditor": "0.0.*"
Run composer install
or composer update
to download the dependencies or you can run composer require midnite81/auditor
., (*5)
Laravel 5 Integration
To use the package with Laravel 5 firstly add the Auditor service provider to the list of service providers
in app/config/app.php
., (*6)
'providers' => [
Midnite81\Auditor\AuditorServiceProvider::class
];
Basic Usage
Please note this is a work in progress package. Documentation is not yet complete., (*7)
use Midnite81\Auditor\Contracts\Auditor;
public function index(Auditor $auditor)
{
$data = MyModel::orderBy('created_at', desc')->get(['data']);
$auditTable = $auditor->setData($data)->sort(['UserId', 'Priorty'])->render();
return view('some.view', ['auditTable' => $auditTable]);
}