#Custom Action for Laravel Nova
##install
composer require tsung/nova-custom-action
php artisan migrate
add "CustomAction::make()" to resource fields add to the last one to make the button same location as default action
public function fields(Request $request)
{
return [
...
CustomAction::make(),
];
}
add which resource have this action on actions resource
====================
changes => what will be updated when running the action
rules => to determine which resource can execute the action
====================
preview