energon7/custom-action-selector

此包允许您将操作选择框更改为按钮视图。

0.1.0 2020-12-19 23:26 UTC

This package is auto-updated.

Last update: 2024-09-21 14:46:20 UTC


README

Latest Version on Packagist Licence Total Downloads

此包允许您将操作选择框更改为按钮视图。

安装

composer require energon7/custom-action-selector

用法

NovaServiceProvider.php

use Energon7\CustomActionSelector\CustomActionSelector;

//...

public function tools()
{
    return [
         new CustomActionSelector()
    ];
}

然后创建任何操作

php artisan nova:action SomeAction

您可以为操作按钮添加图标。

SomeAction.php

  public $icon = '<svg> ... </svg>';
  public function __construct()
  {
      $this->withMeta([
          'icon' => $this->icon
      ]);
  }
  

鸣谢

许可证

本项目是开源软件,采用MIT许可证发布。许可证文件.