控制器代码:
$tokenAmount = json_decode($token->getBody())->result;
return view('account')->with(compact('tokenAmount'));
查看代码:
<label>Wallet Balance {{tokenAmount}}</label>
当我运行代码时。我收到了以下错误。
使用未定义的常量tokenAmount - 假设&#39; tokenAmount&#39;
PS:我也试过以下方法。
$tokenAmount = json_decode($token->getBody())->result;
return view('account', compact('tokenAmount'));
如果我执行echo $tokenAmount
,则会打印该值而不会出现任何错误。
答案 0 :(得分:0)
请更新您的观看代码并查看:
<label>Wallet Balance {{tokenAmount}}</label>
到
<label>Wallet Balance {{$tokenAmount}}</label>