webbundels/changelog

Webbundels 变更日志

1.3.3 2024-07-11 08:50 UTC

This package is not auto-updated.

Last update: 2024-10-03 09:56:44 UTC


README

安装

  1. 将包添加到您的项目中。
composer require webbundels/changelog
  1. 迁移数据库。
php artisan migrate

查看权限

  1. 将方法 'getChangelogViewableAttribute' 添加到您的用户模型中。
  2. 在此方法中编写逻辑以确定用户是否可以查看变更日志页面。
public function getChangelogViewableAttribute() :bool
{
    return $this->can('view_changelog');
}

编辑权限

  1. 将方法 'getChangelogEditableAttribute' 添加到您的用户模型中。
  2. 在此方法中编写逻辑以确定用户是否可以编辑变更日志页面。
public function getChangelogEditableAttribute() :bool
{
    return $this->can('edit_changelog');
}