diff --git a/laravel/database/eloquent/model.php b/laravel/database/eloquent/model.php index 2efb964b..433c25ff 100644 --- a/laravel/database/eloquent/model.php +++ b/laravel/database/eloquent/model.php @@ -225,18 +225,6 @@ abstract class Model { return $model->query()->where($model->key(), '=', $id)->update($model->attributes); } - /** - * Find a model by its primary key. - * - * @param string $id - * @param array $columns - * @return Model - */ - public function _find($id, $columns = array('*')) - { - return $this->query()->where(static::$key, '=', $id)->first($columns); - } - /** * Get all of the models in the database. * @@ -762,7 +750,7 @@ abstract class Model { return static::$$method; } - $underscored = array('with', 'find', 'query'); + $underscored = array('with', 'query'); // Some methods need to be accessed both staticly and non-staticly so we'll // keep underscored methods of those methods and intercept calls to them diff --git a/laravel/database/eloquent/query.php b/laravel/database/eloquent/query.php index 3aee79c9..2d162e8e 100644 --- a/laravel/database/eloquent/query.php +++ b/laravel/database/eloquent/query.php @@ -50,6 +50,22 @@ class Query { $this->table = $this->table(); } + /** + * Find a model by its primary key. + * + * @param mixed $id + * @param array $columns + * @return mixed + */ + public function find($id, $columns = array('*')) + { + $model = $this->model; + + $this->table->where($model::$key, '=', $id); + + return $this->first($columns); + } + /** * Get the first model result for the query. *