laravel 5.2 - FatalErrorException in RouteServiceProvider.php -


i'm using laravel 5.2 , caffeinated modules , when try go somewhere error.

fatalerrorexception in routeserviceprovider.php line 42: modules\users\providers\routeserviceprovider::modules\users\providers{closure}(): failed opening required 'modules/users/http/routes.php' (include_path='.;c:\php\pear')

this routes.php in users module

route::group(['middleware' => 'web'], function() {     route::get('admin/', [         'uses' => 'userscontroller@admin',         'as' => 'login'     ]); }); 

i'm not sure other code need give solve this.

i had same problem , fixed it. replace '\' in path '/'.


Comments

Popular posts from this blog

ios - RestKit 0.20 — CoreData: error: Failed to call designated initializer on NSManagedObject class (again) -

laravel - PDOException in Connector.php line 55: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) -

java - Digest auth with Spring Security using javaconfig -