gpt4 book ai didi

laravel - Eloquent whereHasNot 缺失

转载 作者:行者123 更新时间:2023-12-04 02:52:06 30 4
gpt4 key购买 nike

我需要访问 eloquent 的 whereHasNot方法(此处添加:
https://github.com/laravel/framework/commit/8f0cb08d8ebd157cbfe9fdebb54d2b71b0afaabd )

我通过 composer 安装了 laravel/framework (v5.1.20)。但是,该方法在我的 /Illuminate/Database/Eloquent/Builder.php 中不存在文件。

这是我在 composer.json 中的内容

"laravel/framework": "5.1.*",

我在这里失踪了吗?

如果我无法通过 Composer 添加此方法,如何在我的应用程序中扩展 Eloquent 以添加此方法?

谢谢!

最佳答案

它更名为 whereDoesntHave 2014 年 12 月 17 日。

/**
* Add a relationship count condition to the query with where clauses.
*
* @param string $relation
* @param \Closure|null $callback
* @return \Illuminate\Database\Eloquent\Builder|static
*/
public function whereDoesntHave($relation, Closure $callback = null)
{
return $this->doesntHave($relation, 'and', $callback);
}

关于laravel - Eloquent whereHasNot 缺失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33266838/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com