Dcat Admin 全局修改行操作按钮样式(文字+图标)

默认的行操作显示方式为单个 ICON, 为了方便操作(避免误点),
可以自定义一个行操作类覆盖按钮样式。

参考方法一:

在 app\Admin 新建一个文件夹 Actions
新增文件 TextActions.php

' . $label . '  ';
    }

    /**
     * @return string
     */
    protected function getEditLabel()
    {
        $label = trans('admin.edit') . '';

        return '' . $label . '  ';
    }

    /**
     * @return string
     */
    protected function getQuickEditLabel()
 

你可能感兴趣的:(dcatadmin,php)