bpocallaghan / log-activity
Log activities in your Laravel app
Installs: 2 401
Dependents: 2
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
Requires
- php: ^8.1
- laravel/framework: ^11.0
- symfony/console: ^7.1
Requires (Dev)
- orchestra/testbench: ^8.5
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