如何在 html 页面中显示变量 ( key ) 的值?

How do I display the value of a variable ( key ) in a html page?

我的路线是:

Route::get('/dash/{$slug}', 'DashController@client');

我目前在控制器中使用以下内容:

public function client($slug)
    {

        $idz = Company::where('CompanyID', $slug)->first();
  return view('dashboards.companydashboard', [
            'id' => $idz
        ]);
        
        
    }

在我的 html 页面中我有:

<p>{{$id}}</p>

它没有输出值,我错过了什么

你的路线是错误的,{$slug} 将是 {slug} :

Route::get('/dash/{slug}', 'DashController@client');