webbundels / changelog
Webbundels 变更日志
1.3.3
2024-07-11 08:50 UTC
Requires (Dev)
- orchestra/testbench: ^5.0
README
安装
- 将包添加到您的项目中。
composer require webbundels/changelog
- 迁移数据库。
php artisan migrate
查看权限
- 将方法 'getChangelogViewableAttribute' 添加到您的用户模型中。
- 在此方法中编写逻辑以确定用户是否可以查看变更日志页面。
public function getChangelogViewableAttribute() :bool { return $this->can('view_changelog'); }
编辑权限
- 将方法 'getChangelogEditableAttribute' 添加到您的用户模型中。
- 在此方法中编写逻辑以确定用户是否可以编辑变更日志页面。
public function getChangelogEditableAttribute() :bool { return $this->can('edit_changelog'); }