Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/txsoura/activity-log
Txsoura Activity Log library
https://github.com/txsoura/activity-log
activity-log composer laravel php repository-pattern
Last synced: about 1 month ago
JSON representation
Txsoura Activity Log library
- Host: GitHub
- URL: https://github.com/txsoura/activity-log
- Owner: txsoura
- License: mit
- Created: 2021-10-17T15:47:26.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-03-21T04:44:26.000Z (9 months ago)
- Last Synced: 2024-05-01T19:05:44.325Z (8 months ago)
- Topics: activity-log, composer, laravel, php, repository-pattern
- Language: PHP
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Activity Log
This project, is a simple [Laravel](https://laravel.com) library, to save eloquent model logs.
## Installation
You can install the package via composer:
```bash
composer require txsoura/activity-log
```Next, you should publish the Activity Log provider using Artisan command. The `activitlog` configuration file will be placed in your application's `config` directory:
```bash
php artisan vendor:publish --provider="Txsoura\ActivityLog\Providers\ActivityLogServiceProvider"
```Finally, you should run your database migrations. Activity Log will create one database table called `activity_logs`:
```bash
php artisan migrate
```## Documentation
See the [WIKI](https://github.com/txsoura/activity-log/wiki) for documentation.
## License
This project is under MIT license. Go to [LICENSE](https://opensource.org/licenses/MIT) for more details.