routes.php
Route::get('/viewprofile/{uid?}','userController@viewprofile');
userController.php
public function viewprofile($uid){
if ($uid <> NULL)
{
$getUser = User::where('id','=',$uid)->first();
return View('user.profile')->with('getUser',$getUser);
}
}
inbox.blade.php
<a href="{{ URL::to('viewprofile',[$msg->user->id]) }}"> {{$msg->user->username }} </a>
当我使用路由参数 profile.blade.php 页面设计折叠时,但当我使用简单路由Route::get('/viewprofile','userController@viewprofile');
时,它工作正常。需要帮忙!提前谢谢。