我如何使用 (Laravel voyager) 和 (Vue SPA)?
How I can work with (Laravel voyager) and (Vue SPA)?
我的 Laravel 和 Vue SPA 项目需要一些帮助和问题。
我正在使用 (Vue SPA) 和 Laravel Voyager 作为管理员。
当我想使用 /admin 进入管理面板时出现问题,面板没有显示。
这是我的Routes/web.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();
});
请大家帮忙,谢谢。
我有同样的问题,我所做的就是将管理路由移到任何*路由之上。
Route::group(['prefix' => 'admin'], function () {
Voyager::routes();
});
Route::get('/{any}', 'CodeCommunityController@index')->where('any', '^(?!api).*$');
Route::get('/home', 'HomeController@index')->name('home');
Auth::routes();
我的 Laravel 和 Vue SPA 项目需要一些帮助和问题。
我正在使用 (Vue SPA) 和 Laravel Voyager 作为管理员。
当我想使用 /admin 进入管理面板时出现问题,面板没有显示。
这是我的Routes/web.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();
});
请大家帮忙,谢谢。
我有同样的问题,我所做的就是将管理路由移到任何*路由之上。
Route::group(['prefix' => 'admin'], function () {
Voyager::routes();
});
Route::get('/{any}', 'CodeCommunityController@index')->where('any', '^(?!api).*$');
Route::get('/home', 'HomeController@index')->name('home');
Auth::routes();