質問編集履歴
1
プルダウンの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -115,3 +115,67 @@
|
|
115
115
|
おもにjs側で処理を書くことになると思いますが、laravelのデータベース照合とかjs内でできるのかな?みたいに思っています。
|
116
116
|
|
117
117
|
laravelのモデルやコントローラーにもこんなこと書けばいいよー!ってあればぜひお願いします。
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
config>user.php
|
122
|
+
|
123
|
+
user_name = [
|
124
|
+
|
125
|
+
'login_user' => 'ログインユーザー',
|
126
|
+
|
127
|
+
'comment_user' => 'コメントユーザー'
|
128
|
+
|
129
|
+
]
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
プルダウン
|
134
|
+
|
135
|
+
```
|
136
|
+
|
137
|
+
<table id="list-table">
|
138
|
+
|
139
|
+
<thead>
|
140
|
+
|
141
|
+
<tr>
|
142
|
+
|
143
|
+
<th class="checkbox"></th>
|
144
|
+
|
145
|
+
<th class="user">{{ __('ユーザー') }}</th>
|
146
|
+
|
147
|
+
</tr>
|
148
|
+
|
149
|
+
</thead>
|
150
|
+
|
151
|
+
<tbody>
|
152
|
+
|
153
|
+
@foreach (Config::get('user.user_name') as $key => $value)
|
154
|
+
|
155
|
+
<tr class="{{ old($key) == 1 ? 'selected' : '' }}">
|
156
|
+
|
157
|
+
<td>
|
158
|
+
|
159
|
+
<div class="custom-control custom-checkbox">
|
160
|
+
|
161
|
+
<input type="hidden" class="custom-control-input" name="{{ $key }}" value="0">
|
162
|
+
|
163
|
+
<input type="checkbox" class="custom-control-input role-function-flg-checkbox {{ $errors->has($key) ? ' is-invalid' : '' }}" name="{{ $key }}" value="1" {{ old($key) == 1 ? 'checked' : '' }}>
|
164
|
+
|
165
|
+
<label class="custom-control-label"></label>
|
166
|
+
|
167
|
+
</div>
|
168
|
+
|
169
|
+
</td>
|
170
|
+
|
171
|
+
<td>{{ $value }}</td>
|
172
|
+
|
173
|
+
</tr>
|
174
|
+
|
175
|
+
@endforeach
|
176
|
+
|
177
|
+
</tbody>
|
178
|
+
|
179
|
+
</table>
|
180
|
+
|
181
|
+
```
|