У меня есть следующий код:
В модели категории
public function posts()
{
return $this->belongsToMany(Post::class, 'post__post_category_relations', 'category_id');
}
public function children()
{
return $this->hasMany(Category::class, 'parent_id');
}
В контроллере категории:
public function index(Category $category){
$category_childrens = $category->children;
$posts = ???;
return view('show.posts',compact('posts'));
}
Я пытаюсь получить $posts
связаны с $category_childrens
и передать их на мой взгляд.