eminiarts/aura-cms-activity

Aura CMS Plugin: activity

dev-main 2024-08-07 11:46 UTC

This package is auto-updated.

Last update: 2024-09-07 12:02:17 UTC


README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

This Package is a Plugin for the Aura CMS. It logs activities of the resources using spatie's activitylog package.

Installation

You can install the package via composer:

composer require eminiarts/aura-cms-activity

Publish Spatie's Activitylog package and run the migrations:

php artisan vendor:publish --provider="Spatie\Activitylog\ActivitylogServiceProvider" --tag="activitylog-migrations"

php artisan migrate

Use this trait in your Resource to Log Activity:

use Aura\Activity\LogActivity;

class News extends Resource
{
    use LogActivity;
// ...
}

Fields to be logged can be defined in the resource:

[
    'name' => 'Aktivität',
    'type' => 'Aura\\Base\\Fields\\Tab',
    'validation' => '',
    'global' => true,
    'conditional_logic' => function () {
        return auth()->user()->isSuperAdmin();
    },
    'slug' => 'tab-activity',
],
[
    'name' => 'Aktivität',
    'type' => 'Aura\\Base\\Fields\\View',
    'validation' => '',
    'on_view' => true,
    'view' => 'aura-cms-activity::activity',

    'slug' => 'aktivitaet',
],

Optionally, you can publish the views using

php artisan vendor:publish --tag="aura-cms-activity-views"

Changelog

Please see CHANGELOG for more information on what has changed recently.

Credits

License

The MIT License (MIT). Please see License File for more information.