我正在使用Laravel 5.6,但无法解决此问题。 我在数据库中有一张表用于页面。在这里。
我有这样的路线
Route::get('contact-us','PageController@index')->name('contact-us');
Route::post('contact-us','PageController@saveContact')->name('contact.save');
在图像中,您可以看到我有动作{{route('contact.save')}}
。
现在page.blade.php
中,当我传递内容时,我无法正确呈现它。我已经尝试过了。
{!! $model->content !!}
它像这样渲染它
虽然我需要这样。
http://localhost:8000/contact-us
请帮助。我如何渲染字符串,以便路由正确可用,然后显示它。