bpocallaghan/log-activity

Log activities in your Laravel app

3.0.0 2023-04-24 11:46 UTC

This package is auto-updated.

Last update: 2024-04-24 14:03:22 UTC


README

Log activities in your Laravel app. This package is being used in the Admin Starter Project

Installation

You can install the package via composer:

composer require bpocallaghan/log-activity

The package will automatically register itself.

You can publish the migration with:

php artisan vendor:publish --provider="Bpocallaghan\LogActivity\LogActivityServiceProvider" --tag="migrations"

After publishing the migration you can create the log_activities table by running the migrations:

php artisan migrate