laravel-scout-elastic-demo icon indicating copy to clipboard operation
laravel-scout-elastic-demo copied to clipboard

笑来搜原型 Laravel Scout & ElasticSearch ik

Results 12 laravel-scout-elastic-demo issues
Sort by recently updated
recently updated
newest added

Demo里的路由是这样的... ```php `Route::get('/', function () { return redirect('/search'); }); Route::get('/search', [ 'uses' => 'PostController@search' ]);` ``` 无法打开“首页”,点击“搜索”之后,也会报“Not Found”; ```php `Route::get('/', 'PostController@search'); Route::get('/search', 'PostController@search');` ``` 我改成这样了,可以展示“首页”了,但是点击之后,还是会报 “The requested URL /search was...