gpt4 book ai didi

mysql - laravel5.4 中 undefined variable

转载 作者:行者123 更新时间:2023-11-29 10:56:44 25 4
gpt4 key购买 nike

我正在尝试从数据库中获取值并在下拉列表中显示它..当我尝试这个时,我收到此错误 undefined variable 用户类型..我不明白错误在哪里..我是 Laravel 框架的新手..

这是我的 Controller :

public function get() {
$usertype = DB::table('user_type')->get();
return View::make('/home')->with(compact('user_type'));
return $usertype;

}

这是我的 View 下拉列表:

<div class="form-group">
<label for="cat">User Type</label>
<select class="form-control" name="user_type_id">
@foreach($usertype as $user)
<option id="user_type_Id" value="{{$user->id}}" selected="selected">{{ $user->type }}</option>
@endforeach
</select>
</div>

谁能帮帮我..

最佳答案

尝试更改紧凑函数中的变量名称

public function get() {
$usertype = DB::table('user_type')->get();
return View::make('/home')->with(compact('usertype'));
return $usertype;

}

还要删除第二个 return 语句,因为它永远不会执行。

关于mysql - laravel5.4 中 undefined variable ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42919430/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com