【发布时间】:2016-04-30 01:53:47
【问题描述】:
在我的控制器中是带有此代码的紧凑对象
public function getEdit($var = '') {
$words = Word::where('title', $var)->get();
return view('dict.edit', compact('words'));
}
在我看来,我需要使用属性标题形式的词,然后我调用。
<h3>{{ $words->title }}</h3>
它有错误问题说 Undefined property: Illuminate\Database\Eloquent\Collection::$title .
【问题讨论】: