bpocallaghan / log-activity
Log activities in your Laravel app
4.0.1
2026-06-29 17:17 UTC
Requires
- php: ^8.3
- laravel/framework: ^12.0|^13.0
- symfony/console: ^7.3
Requires (Dev)
- orchestra/testbench: ^10.4|^11.0
Suggests
None
Provides
None
Conflicts
None
Replaces
None
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