energon7/custom-action-selector

This package allows you to change the action select box to a button view.

Downloads

2794

Stars

1

Version

0.1.0

Nova Custom Action Selector

Latest Version on Packagist Licence Total Downloads

This package allows you to change the action select box to a button view.

Installation

composer require energon7/custom-action-selector

Usage

NovaServiceProvider.php:

use Energon7\CustomActionSelector\CustomActionSelector;

//...

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

Then create any action:

php artisan nova:action SomeAction

You can add icon to a action button.

SomeAction.php:


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

Credits

License

This project is open-sourced software licensed under the MIT license.

Energon7

Author

Energon7