Skip to content

ollico/laravel-audit-log-queue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Audit Log Queue

Laravel Audit Log Queue

Latest Version MIT Licensed Actions Status Actions Status

A simple helper method to send activity logs to the queue.

Easily send auditable user (or any other entity) events to the queue and store them using the Activity Log by spatie.

The logger requires the use of an Enum class to ensure only allowed events are logged.

Installation

Install the package

composer require ollico/laravel-audit-log-queue

This package uses auto-discovery which doesn't require you to manually add the ServiceProvider.

Publish the config

php artisan vendor:publish --provider="Ollico\AuditLog\AuditLogServiceProvider"

Thanks

This package depends on the terrific Activity Log package by Spatie.