PHP code example of rudestewing / laravel-activity-logger

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

    

rudestewing / laravel-activity-logger example snippets


composer 


    'providers' => [
        ...

        Rudestewing\ActivityLogger\ActivityLogServiceProvider::class,

        ...
    ];


php artisan vendor:publish --provider="Rudestewing\ActivityLogger\ActivityLogServiceProvider" --tag="migrations" 

php artisan migrate



namespace App;

use Illuminate\Database\Eloquent\Model;
use Rudestewing\ActivityLogger\Traits\ActivityLogger;

class Post extends Model
{
    protected $guarded = [];
    
    use ActivityLogger;
}