Laravel - Basics and Architecture
Identify the error in this Laravel controller method:
public function index() {
$users = User::all;
return view('users.index', compact('users'));
}