I know it's old but if anybody is still looking for it.
Maybe you are trying to do the fill operation.
Eg:
$user = ['name' => 'Foo Bar','email' => 'foo@bar.com',];$userModel = new User();$userModel->fill($user);// If you want to save this then -> $userModel->save();