energon7 / custom-action-selector
This package allows you to change the action select box to a button view.
Installs: 3 614
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 3
Open Issues: 0
Language:Vue
Requires
- php: >=7.1.0
README
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.