toandq71 / simple-log
Package Log Activity
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:false
Requires
- php: ^8.2
- illuminate/support: ^11.0
README
Installation
composer require toandq71/simple-log
Run the command:
php artisan histories:install
php artisan migrate
Usage
use toandq71\SimpleLog\Interface\LogHistoryInterface; // Coding in file controller public function testLog(Request $request) { $log = app()->get(LogHistoryInterface::class); // Save log $log->saveHistory([ 'action' => 'created_user', 'created_by' => 1 ]); }