我正在使用laravel 5.2
请告诉我如何在视图上定义slug
这是我的观点
@foreach($thread->forumindex()->where('slug', $slug)->firstorFail() as $forumindex)
<p>{{ $forumindex->title }}</p>
@endforeach
这是我的控制器
public function forumcomment($thread_slug, $slug){
$thread = thread::where('slug', $thread_slug)->firstorFail();
return view('forum.index.show', compact('thread'));
}