PHP code example of toandq71 / simple-log

1. Go to this page and download the library: Download toandq71/simple-log library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

toandq71 / simple-log example snippets


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
    ]);
}
bash
php artisan histories:install
bash
php artisan migrate