请让我在My Laravel和Vue SPA项目中获得一些帮助和问题。
我正在使用(Vue SPA)和Laravel Voyager进行管理。
当我想使用转到管理面板时出现问题:/admin面板未显示。
这是我的路线/网站.php
<?php
Route::get('/{any}', 'CodeCommunityController@index')->where('any', '^(?!api).*$');
Route::get('/home', 'HomeController@index')->name('home');
Auth::routes();
Route::group(['prefix' => 'admin'], function () {
Voyager::routes();
});
请帮助伙计们,谢谢你们。
呼啦一阵风