don't try to apply columns in the relations field...

This commit is contained in:
Dane Everitt 2017-07-08 14:17:07 -05:00
parent bd78e3544d
commit 761d34f178
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -126,7 +126,7 @@ abstract class EloquentRepository extends Repository implements RepositoryInterf
}
}
return ($this->withFresh) ? $instance->fresh($this->getColumns()) : $saved;
return ($this->withFresh) ? $instance->fresh() : $saved;
}
/**