Skip to content

Modal

You can enable the "new version modal" via the Plugin object. This will display a modal to the user when a new version is available. This feature also requires that your user model has a column to store the last viewed release tag and enable it via the ->trackUserVersion() method.

php
$panel->plugins([
    ChangelogPlugin::make()
        ->enableNewVersionModal()
        ->trackUserVersion('user_column');
])