public function index()
{
return view('index')
->with(['posts' => $this->posts]);
}
public function show($id)
{
return view('show')
->with(['post' => $this->posts[$id]]);
}
なぜ単数形の post
を使うのでしょうか?
この回答を見るにはプレミアムプランへの登録が必要です
プレミアムプランとは?