回答編集履歴

1

追記

2020/04/07 06:05

投稿

kodai
kodai

スコア759

test CHANGED
@@ -11,3 +11,17 @@
11
11
 
12
12
 
13
13
  こうする。
14
+
15
+
16
+
17
+ 追記
18
+
19
+ ```
20
+
21
+ $posts = Note::orderBy('created_at', 'asc')->first();//get();からfirst();に変更
22
+
23
+ //
24
+
25
+ $posts = Note::orderBy('created_at', 'asc')->get(); // こうかな?NoteじゃなくてPostですか?
26
+
27
+ ```