回答編集履歴

2

コード微修正

2018/01/09 08:49

投稿

aro10
aro10

スコア4106

test CHANGED
@@ -24,7 +24,7 @@
24
24
 
25
25
  #利用
26
26
 
27
- $model->createdAtJst
27
+ $model->created_at_jst
28
28
 
29
29
  ```
30
30
 

1

追記

2018/01/09 08:49

投稿

aro10
aro10

スコア4106

test CHANGED
@@ -27,3 +27,23 @@
27
27
  $model->createdAtJst
28
28
 
29
29
  ```
30
+
31
+
32
+
33
+ [追記]
34
+
35
+ created_at自体にアクセサを以下のようにつけても動作したので、ユーザー毎のタイムゾーン変更に有益かもしれません。
36
+
37
+ ```
38
+
39
+ public function getCreatedAtAttribute()
40
+
41
+ {
42
+
43
+ #return $this->asDateTime($this->attributes["created_at"])->timezone("CST");
44
+
45
+ return $this->asDateTime($this->attributes["created_at"])->timezone("JST");
46
+
47
+ }
48
+
49
+ ```