Laravel - Controllers
Given this controller method:
What will be passed to the view when
public function show($id) {
return view('user.profile', ['userId' => $id]);
}What will be passed to the view when
show(5) is called?