我正在使用laravel框架5.4并编写以下控制器类:
class ProfileController extends Controller
{
public function index(){
$uprofile = DB::table('user_profile')->find(Auth::id());
return view('folder.profile')->with('uprofile',$uprofile);
}
路线是:
Route::get('/','ProfileController@index');
在视图中我使用
@foreach($uprofile as $profile)
$profile->id
@endforeach
这里有什么不妥?
答案 0 :(得分:2)
将index()
方法更改为:
public function index(){
$uprofile = DB::table('user_profile')->where('userid','=',Auth::id())->first();
return view('CityOfWorks.profile')->with('uprofile',$uprofile);
}
同样在view
@foreach($uprofile as $profile)
{{ $profile->id }} // Blade views in curly braces
@endforeach
答案 1 :(得分:0)
return view('folder.profile')->with('uprofile');