我正在尝试使用 Laravel 存在函数来验证 Laravel 8 中的教义实体。我在教义配置中有两个不同的管理器,一个是默认的,另一个是 magento。
我在 config/databse.php 中使用 magento 名称定义了数据库连接。
public function rules()
{
return [
'incrementId' => 'required|exists:connection.magento.Yusrub\Order\Domain\Entities\Order',
];
}
但是当我运行代码时,它总是选择默认连接而不是 magento 连接。