imemento/activity-log

Activity Log for Laravel

Installs: 2 682

Dependents: 1

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

pkg:composer/imemento/activity-log

8.1.1 2021-08-02 05:38 UTC

README

Build Status Latest Stable Version License Total Downloads

Custom activity logger.

Install

composer require imemento/activity-log

Use

Anywhere in the app:

activity()
    ->setResource($post) //optional
    ->log("$post->name was updated.");

Or use the ActivityLogged trait on a Model:

class Post extends Model
{
    use ActivityLogged;
}