Laravel 5中后端和前端的路由

时间:2016-08-08 21:27:41

标签: laravel-5 routes frontend backend

目前我尝试在当前项目中更改一些链接。

这是两个例子。

xyz.com/mn-op (example for user site) [old one xyz.com/user/mn-op]
xyz.com/backend (site for backend)

如果我想打开后端的网站,那么我会收到以下错误。

Sorry, the page you are looking for could not be found.
No query results for model [App\Models\User].

以下是我项目中的文件夹结构。

laravel
-app
--Http
---Controllers
----Frontend
----Backend

这是我的routes.php。

的一部分
Route::group(['middleware' => 'auth'], function() {
    Route::group(['namespace' => 'frontend'], function () {
    Route::get('{username?}', ['uses' => 'UserController@getProfile', 'as' => 'user.profile']);
    });
    Route::group(['namespace' => 'backend'], function() {
        Route::get('backend', ['uses' => 'DashboardController@getIndex', 'as' => 'backend']);
    });
});

如何修复它以便我可以再打开我的后端?

0 个答案:

没有答案