Laravel 从后端访问前端页面的样板

Laravel Boilerplate Accessing Frontend page from Backend

在Laravel样板中,我们如何在后台登录的同时访问前台页面?

我已将此路由放在前端 access.php,但是当把它放在后端 access.php 时,它无法正确加载

Route::get('test', 'LoginController@showTestForm')->name('test');

项目结构

route.php 文件中的默认命名空间与 Controller 目录相关(如果应用程序开发人员未特别更改)。试试这个:

Route::get('test', 'Frontend\Auth\LoginController@showTestForm')->name('test');