Route::controller('admin/auth', '\\Backend\\AuthController');这个后面的控制器为什么要用"\\"了,而不是"/"了

我是在windows下操作的
已邀请:

FiveSay - 成武

赞同来自: kelson

后面的这一段表示的是 命名空间,而不是目录。

jiangs

赞同来自:

这个第一个参数是基于url控制器的处理,第二个参数是控制器的类名啊
这个文档原文,如下:
Route::controller('users', 'UserController');
The controller method accepts two arguments. The first is the base URI the controller handles, while the second is the class name of the controller.

要回复问题请先登录注册