質問編集履歴

2

修正

2020/11/11 12:56

投稿

renren643
renren643

スコア279

test CHANGED
File without changes
test CHANGED
@@ -46,6 +46,8 @@
46
46
 
47
47
  ```
48
48
 
49
+
50
+
49
51
  このメソッドは
50
52
 
51
53
  このように呼び出すことで
@@ -63,6 +65,20 @@
63
65
  投稿とそれに紐づくコメントを取得し、ページネーションの形式で渡してくれます
64
66
 
65
67
  また、このように呼び出すことで
68
+
69
+
70
+
71
+
72
+
73
+ ```
74
+
75
+ $this->getPosts(['user'], true);
76
+
77
+ ```
78
+
79
+ postしたユーザーを一緒に取得でき、
80
+
81
+ また以下で
66
82
 
67
83
 
68
84
 

1

修正

2020/11/11 12:56

投稿

renren643
renren643

スコア279

test CHANGED
File without changes
test CHANGED
@@ -28,19 +28,19 @@
28
28
 
29
29
  {
30
30
 
31
- $buildings = Building::with($with);
31
+ $posts = Post::with($with);
32
32
 
33
33
 
34
34
 
35
35
  if($isPaginate){
36
36
 
37
- $buildings->paginate(10)
37
+ $posts->paginate(10)
38
38
 
39
39
  }
40
40
 
41
41
 
42
42
 
43
- return $buildings->get();
43
+ return $posts->get();
44
44
 
45
45
  }
46
46