質問編集履歴
2
タイトルを変えました
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
laravel ログインユーザーごとの一覧表示機能
|
1
|
+
laravel ログインユーザーごとの一覧表示機能ができない
|
test
CHANGED
File without changes
|
1
一覧表示のviewのソースを追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -84,6 +84,54 @@
|
|
84
84
|
|
85
85
|
|
86
86
|
|
87
|
+
一覧表示に用いるviewの該当ソースは以下の通りです
|
88
|
+
|
89
|
+
```
|
90
|
+
|
91
|
+
<div class="container">
|
92
|
+
|
93
|
+
<table class="table">
|
94
|
+
|
95
|
+
<tbody>
|
96
|
+
|
97
|
+
@foreach($clothes as $cloth)
|
98
|
+
|
99
|
+
<tr>
|
100
|
+
|
101
|
+
<th scope="row">{{$cloth->image}}</th>
|
102
|
+
|
103
|
+
<td>{{$cloth->category}}</td>
|
104
|
+
|
105
|
+
<td>{{$cloth->name}}</td>
|
106
|
+
|
107
|
+
<td>{{$cloth->category}}</td>
|
108
|
+
|
109
|
+
<td>{{$cloth->size}}</td>
|
110
|
+
|
111
|
+
<td>
|
112
|
+
|
113
|
+
<a href="/cloth/{{$cloth->id}}" class="btn btn-primary btn-sm">詳細</a>
|
114
|
+
|
115
|
+
<a href="" class="btn btn-primary btn-sm">編集</a>
|
116
|
+
|
117
|
+
<a href="" class="btn btn-danger btn-sm">削除</a>
|
118
|
+
|
119
|
+
</td>
|
120
|
+
|
121
|
+
</tr>
|
122
|
+
|
123
|
+
@endforeach
|
124
|
+
|
125
|
+
</tbody>
|
126
|
+
|
127
|
+
</table>
|
128
|
+
|
129
|
+
</div>
|
130
|
+
|
131
|
+
```
|
132
|
+
|
133
|
+
|
134
|
+
|
87
135
|
### 試したこと
|
88
136
|
|
89
137
|
|