Код: Выделить всё
class Tag extends Eloquent {
public function posts()
{
return $this->morphedByMany('Post', 'taggable');
}
public function videos()
{
return $this->morphedByMany('Video', 'taggable');
}
}
Код: Выделить всё
$tag = Tag::find(1);
$posts = $tag->posts;
$videos = $tag->videos;
Код: Выделить всё
$tag = Tag::find(1);
$taggable = $tag->taggable;
SQLSTATE[42S22]: Столбец не найден: 1054 Неизвестный столбец «tag_groups».
в «предложенииwhere» (SQL: выберите * из tag_groups где
tag_groups.`` имеет нулевой предел 1)
Подробнее здесь: https://stackoverflow.com/questions/242 ... s-together