1. Go to this page and download the library: Download ndexondeck/lauditor library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ndexondeck / lauditor example snippets
Use Ndexondeck\Lauditor\Model\Audit;
class YourAuditModel extends Audit {
}
Use Ndexondeck\Lauditor\Model\Authorization;
class YourAuthorizedModel extends Authorization {
}
use Ndexondeck\Lauditor\Contracts\AuditUser;
use Ndexondeck\Lauditor\Contracts\AuthorizationUser;
class User implements AuditUser,AuthorizationUser{
}
//...
/**
* The application's global HTTP middleware stack.
*
* These middleware are run during every request to your application.
*
* @var array
*/
protected $middleware = [
\Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode::class,
\Illuminate\Foundation\Http\Middleware\ValidatePostSize::class,
\App\Http\Middleware\TrimStrings::class,
\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class,
\App\Http\Middleware\TrustProxies::class,
\Ndexondeck\Lauditor\Middleware\LogAfterRequest::class
];
//...
Class Staff extends Audit{
function boot(){
parent::boot();
}
}