问题描述
根据Laravel Nova网站,版本3.10.0具有以下新功能:
Added new "standalone" actions for running actions without selecting resources. #961
Added ability for resources to auto-refresh their index listing. #957
到拉取请求的链接当然不起作用,因为这不是开源项目。
解决方法
在您的操作类中,添加以下代码,以覆盖默认值,在/nova/src/Actions/Action.php中将其设置为false。
/**
* Indicates if the action can be run without any models.
*
* @var bool
*/
public $standalone = true;