I'm trying to update the password of a user I've pulled from the database in Laravel 4. Here is what I have:
$user = User::where('username', $username)->get();
if (!empty($user)) {
$user->password = Hash::make($password);
$user->save();
}
But Laravel is telling me save is an unknown method. What am I doing wrong here?