voyager-inc/simple-histories

Package Log Activity

v1.1.1 2024-05-10 02:43 UTC

This package is auto-updated.

Last update: 2024-05-23 09:45:37 UTC


README

PHP v8.2

Laravel v11.x

Installation

composer require voyager-inc/simple-histories

Run the command:

php artisan histories:install
php artisan migrate

Usage

use VoyagerInc\SimpleHistories\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
    ]);
}