This is my relationship:
article:
public function tags(){
return $this->belongsToMany('App\Models\ATags', 'article_tags','article_id', 'article_tag_id');
}
language:
public function tags(){
return $this->hasMany('App\Models\ATags', 'language_id');
}
Here i get all tags for specific language. I want now to display all tags for that language for that specific article.
foreach($languages as $language){
$tags[] = $language->tags;
}
Any suggestion how can i do that?
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire