質問編集履歴
1
viewのコードを追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -67,3 +67,41 @@
|
|
67
67
|
現状のテーブル構造でpostモデルからprofileモデルにアクセスしてfilenameを取得したいです。
|
68
68
|
|
69
69
|
厳しいようであれば別の方法があればご教授いただけますと幸いです。
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
### viewのコード
|
74
|
+
|
75
|
+
```
|
76
|
+
|
77
|
+
@foreach ($posts as $post)
|
78
|
+
|
79
|
+
<div class="styling">
|
80
|
+
|
81
|
+
<div class="img">
|
82
|
+
|
83
|
+
<a href="{{route('post.index', $post->id)}}">
|
84
|
+
|
85
|
+
<img srcset="/storage/images/{{ json_decode($post->filenames, true)[0] }}" alt="knot">
|
86
|
+
|
87
|
+
</a>
|
88
|
+
|
89
|
+
</div>
|
90
|
+
|
91
|
+
<div class="styling_contents">
|
92
|
+
|
93
|
+
<div class="stylist">
|
94
|
+
|
95
|
+
<div class="icon"><a href="{{route('profile', $post->user->id)}}"><img srcset="ここでprofileのfilenameを取得したい" alt="knot" class="profile_icon"></a></div>
|
96
|
+
|
97
|
+
<div class="name">{{ $post->user->name }}</div>
|
98
|
+
|
99
|
+
</div>
|
100
|
+
|
101
|
+
</div>
|
102
|
+
|
103
|
+
</div>
|
104
|
+
|
105
|
+
@endforeach
|
106
|
+
|
107
|
+
```
|