问题1,比如文章和评论。Post
和Comment
。
public function comments()
{
return $this->hasMany(App\Comment::class)->orderBy('column', 'desc');
}
问题2:比如文章和分类。Post
和Category
。
//Category.php
public function posts()
{
return $this->hasMany(App\Post::class);
}
使用时:
$categroy->posts()->paginate(15);