moonshine/changelog

Model ChangeLog for MoonShine

1.0.3 2024-05-02 13:11 UTC

This package is auto-updated.

Last update: 2024-05-02 13:12:43 UTC


README

Requirements

  • MoonShine v2.0+

Installation

composer require moonshine/changelog
php artisan migrate

Get started

Add trait HasChangeLog to model

class Post extends Model
{
    use HasChangeLog;
}

Add component to Page

protected function bottomLayer(): array
{
    return [
        ...parent::bottomLayer(),

        ChangeLog::make('Changelog', $this->getResource())
    ];
}

or in Resource

class PostResource extends ModelResource
{
    // ...
    protected function onBoot(): void
    {
        $this->getPages()
                ->formPage()
                ->pushToLayer(
                    Layer::BOTTOM,
                    ChangeLog::make('Changelog', $this)
                );
    }
    // ...
}

By default, 5 last changes are displayed. To change this, use the limit() method

ChangeLog::make('Changelog', $this)->limit(10)