$user = User::find(1);
$user->name = 'abc';
$user->save();
You can also update multiple attributes at once using update, which does not require using save afterwards:
$user = User::find(1);
$user->update(['name' => 'abc', 'location' => 'xyz']);
You can also update a model(s)...