Add build modification settings, fix exception handling to log to file

This commit is contained in:
Dane Everitt
2017-07-23 19:57:43 -05:00
parent ace70a3599
commit f842aae3d3
15 changed files with 427 additions and 50 deletions

View File

@@ -145,6 +145,14 @@ abstract class EloquentRepository extends Repository implements RepositoryInterf
return ($this->withFresh) ? $instance->fresh() : $saved;
}
/**
* {@inheritdoc}
*/
public function updateWhereIn($column, array $values, array $fields)
{
return $this->getBuilder()->whereIn($column, $values)->update($fields);
}
/**
* {@inheritdoc}
*/