我有一個表格請求類來驗證我的數據,我使用了messages()
方法返回像這樣的自定義驗證錯誤信息輸出HTML:Laravel 5.1如何在表單驗證錯誤消息
public function messages()
{
return [
'name.valid_name' => 'The name is incorrect, please see the <a href="'.route('naming_conventions').'">Naming Conventions</a> page for instructions on naming.'
];
}
所以你可以看到我想在錯誤消息中輸出超鏈接來幫助用戶。當輸出錯誤信息,雖然所有的HTML標籤的已轉化爲實體,以便對什麼是真正的輸出是:
The name is incorrect, please see the <a href="http://local.website.com/naming-conventions">Naming Conventions</a> page for instructions on naming.
如何我在錯誤信息輸出HTML?
的可能的複製[Laravel 5:用刀片顯示HTML(http://stackoverflow.com/questions/29253979/laravel- 5-display-html-with-blade) –