我想从 到 ,但他们告诉我找不到这样的路线。我做错了什么。提前感谢您的帮助。home.blade.phpall_article.blade.php
博客/首页刀片
<a href="{{route('blog.all_article')}}" class="btn btn-primary pull-right"><i class="fa fa-plus-square-o"></i> Add</a>
博客控制器
public function articlesAll_blade(){
return view('blog.all_article',[
'articles' => Article::orderBy('created_at', 'desc')->paginate(10),
'footers' => System::all(),
]);
}
网站.php
Route::get('/', 'BlogController@articlesAll', function () {
return view('blog.home');
});
Route::get('/all_article', 'BlogController@articlesAll_blade', function () {
return view('blog.all_article');
});
慕容708150
一只萌萌小番薯