undefined变量uprofile laravel 5.4

时间:2017-08-26 08:47:55

标签: laravel laravel-5

我正在使用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

这里有什么不妥?

2 个答案:

答案 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)

在你的索引方法中,只需删除$ uprofile

return view('folder.profile')->with('uprofile');