webakula / la2-custom-actions-button
laravel-admin 扩展的自定义操作按钮
1.2.0
2021-04-23 13:08 UTC
Requires
- php: >=7.0.0
- encore/laravel-admin: >=2.0.0
Requires (Dev)
- phpunit/phpunit: ~6.0
This package is auto-updated.
Last update: 2024-09-23 20:18:35 UTC
README
截图
安装
composer require nim4n/custom-actions-button
配置
在文件 config/admin.php 的配置部分中,添加此扩展的配置。
'extensions' => [ 'custom-actions-button' => [ "enable" => true, "view" => [ "label" => "Detail", "icon" => "fa fa-eye", "class" => "btn btn-sm btn-info" ], "edit" => [ "label" => "Edit", "icon" => "fa fa-edit", "class" => "btn btn-sm btn-warning" ], "delete" => [ "label" => "", "icon" => "fa fa-trash", "class" => "btn btn-sm btn-danger" ] ] ],