未定義の変数にエラーがあります。どうすればよいですか? ForumController:未定義の変数:フォーラム
public function index()
{
$forums = Forum::all();
return view('forum.index') -> withForum($forums);
}
ルート:
Route::resource('/forum','ForumController');
welcome.blade:
@foreach($forums as $forum)
<div class="col-md-7">{{ $forum->title }}</div>
<div class="col-md-5 text-center">
<span class="label label-warning">پاسخ : ۱۰</span>
<span class="label label-primary">تشکر : ۱۰</span>
<span class="label label-success">RaymondDragon</span>
</div>@endforeach
ErrorException:
Undefined variable: forums (View: /opt/lampp/htdocs/forums/resources/views/welcome.blade.php)
あなたは – lagbox
はそんなにありがとう 'welcome'ビューを返しません。あなたがここにある...間違ったルートとコントローラを見せている...私はみますと私が発表しますよ結果。 – RaymondDragon
あなたの 'forum.index'ビューは 'includes'' welcome'ですか? – lagbox