PHP code example of kouloughliapp / activity-log

1. Go to this page and download the library: Download kouloughliapp/activity-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/ */

    

kouloughliapp / activity-log example snippets


protected function plugins()
    {
        return [
            //...
            \Kouloughli\UserActivity\UserActivity::class,
        ];
    }

protected function widgets()
{
    return [
       //...
       \Kouloughli\UserActivity\Widgets\ActivityWidget::class,
    ];
}

php artisan vendor:publish --provider="Kouloughli\UserActivity\UserActivity"  --tag="migrations"

php artisan migrate
php artisan db:seed --class="ActivityPermissionsSeeder"