我要在落后的地方进行攻陷
$aproval = Aproval_position::get();
$user = User::get();
return view('authentication.index_aproval', compact('user','aproval'));
此视图刀片
@foreach($aproval as $approv)
<label for="" class="col-lg-3">{{ $approv->name_matrix }}</label>
<select>
@foreach($user as $user)
<option value="">{{ $user->name }}</option>
@endforeach
</select>
@endforeach
但是当我尝试在循环证明多数民众赞成在错误内使用foreach用户时, 我要使用User foreach表2x或更多,但是不能, 能给我推荐的使用方式吗?
答案 0 :(得分:0)
更改此:
Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As KeyPressEventArgs) Handles TextBox1.KeyPress
If TextBox1.Text.Length >= 25 Then
If e.KeyChar <> ControlChars.Back Then
e.Handled = True
End If
End If
End Sub
对此:
@foreach($user as $user)
<option value="">{{ $user->name }}</option>
@endforeach
我希望能解决您的问题。