我想顯示的全名作爲標題:laravel&葉片模板@section錯誤
@section('title', ['title' => $userdetail->fullName])
我已經使用了上面的代碼,它顯示字符串的錯誤異常轉換成對象。
我想顯示的全名作爲標題:laravel&葉片模板@section錯誤
@section('title', ['title' => $userdetail->fullName])
我已經使用了上面的代碼,它顯示字符串的錯誤異常轉換成對象。
修改@section這個
@section('title', {{$userdetail->fullName}})
做這樣的 -
@section('title', "$userdetail->fullName")
裹雙引號內的第二個參數,因爲它使得它自動呈現一個變量,普通文本,而單引號只呈現文本而不是可變的。
請記住,您不能在刀片語法中使用blade echo {{ }}
。 像 - @section('title', {{ $userdetail->fullName }})
@section('title', $userdetail->fullName)
你並不需要指定它作爲關聯數組,只是把變量,部分將是這個變量
的價值