我在学习 Laravel 框架,但不知道如何访问控制器中的属性。
public function uuid(Request $request)
{
if($request->get('uuid') == null) return abort(404);
$uuid = $request->get('uuid');
$users = DB::table('users')->select('*')->where('uuid', $uuid)->get();
$result = array([
'id' => $users['id'],
'username' => $users['username'],
'uuid' => $users['uuid'],
]);
return view ('dashboard')->with('username', $result['username']);
}
在我的dashboard.blade.php
{{$username}}
当我来到仪表板时,它会显示这样的错误
ErrorException (E_NOTICE) 未定义索引:用户名
元芳怎么了
蛊毒传说
holdtom