回答編集履歴
1
追記
answer
CHANGED
@@ -4,4 +4,9 @@
|
|
4
4
|
$comments = $post->comments()->paginate(5);
|
5
5
|
```
|
6
6
|
|
7
|
-
[How to Paginate Eloquent hasMany relation?](https://laracasts.com/discuss/channels/laravel/how-to-paginate-eloquent-hasmany-relation)
|
7
|
+
[How to Paginate Eloquent hasMany relation?](https://laracasts.com/discuss/channels/laravel/how-to-paginate-eloquent-hasmany-relation)
|
8
|
+
|
9
|
+
[追記] $postのリレーションとして設定したい場合
|
10
|
+
```
|
11
|
+
$post->setRelation('comments', $post->comments()->paginate(5));
|
12
|
+
```
|