Revert previous changes to Eloquent.

This commit is contained in:
Taylor Otwell 2011-07-08 07:32:25 -07:00
parent 16265a2cf6
commit 00b064c7d5
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ public function has_and_belongs_to_many($model, $table = null)
$this->relating_key = strtolower(get_class($this)).'_id';
return static::make($model)
->select(array(static::table($model).'.*'))
->select(static::table($model).'.*')
->join($this->relating_table, static::table($model).'.id', '=', $this->relating_table.'.'.strtolower($model).'_id')
->where($this->relating_table.'.'.$this->relating_key, '=', $this->id);
}