laravel ide-helper where方法如何生成?
使用ide-helper生成model注释,如下:
调用如下:
报错如下:
请问ide-helper如何生成where方法?如何解决此问题?
补充
在ide-helper的github 主页上看到下面一句话:
Eloquent allows calling where<Attribute>
on your modes, e.g. Post::whereTitle(…)
and automatically translates this to e.g. Post::where('title', '=', '…')
.
但是在laravel文档中却没有找到相关内容?
回答
php artisan ide-helper:models
第二个 ::
应该改为 ->
以上是 laravel ide-helper where方法如何生成? 的全部内容, 来源链接: utcz.com/a/35197.html