Commit ca87c15c by liuyingkang

fix(Admin): 修复律师协约收入控制器权限问题

- 新增删除按钮权限检查,无权限时隐藏删除按钮
- 保持代码格式一致性,移除多余空行
parent e87f4ccc
......@@ -49,6 +49,11 @@ protected function grid()
$grid->disableEditButton();
$grid->disableRowSelector();
// 检查是否有删除权限,没有则隐藏删除按钮
if (!Admin::user()->can('delete')) {
$grid->disableDeleteButton();
}
$grid->filter(function (Grid\Filter $filter) {
// 更改为 panel 布局
$filter->panel();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment