因此,在单击链接以查看单个视图时,页面会中断并且不会加载我的图像。
布局工作正常 http://i.imgur.com/v6BO8AU.png
布局损坏 http://i.imgur.com/REDIgcn.png
链接到路线
{{URL::route('post',$post->id)}}
后控制器
public function getPost($id = null)
{
return View::make('index.post')
->with('post',Post::find($id)
->with('title','Post');
}
路线
`Route::get('post/{id},array('as'=>'post','uses'=>'PostsController@getPost'));`
任何帮助将不胜感激这个问题让我发疯。