users) // $request->users is an array of IDs, ex. [1, 2, 3] // Insert Eloquent statement here return redirect('/')->with('success', 'Users deleted'); } public function only_active() { // TASK: That "active()" doesn't exist at the moment. // Create this scope to filter "where email_verified_at is not null" $users = User::active()->get(); return view('users.index', compact('users')); } }