File tree 2 files changed +9
-4
lines changed
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 97
97
98
98
/*
99
99
|--------------------------------------------------------------------------
100
- | Set namespace to Controller when it 's publish
100
+ | Route 's controllers namespace
101
101
|--------------------------------------------------------------------------
102
- | Uncomment namespace to set config
102
+ |
103
+ | You may need to change the namespace of the route's controllers of
104
+ | this package after publishing the 'controllers' asset, from the
105
+ | default one to your App's controllers namespace.
106
+ |
103
107
| By default: Chatify\Http\Controllers
108
+ |
104
109
*/
105
- 'namespace ' => env ('CHATIFY_NAMESPACE_CONTROLLER ' , 'Chatify\Http\Controllers ' ),
110
+ 'namespace ' => env ('CHATIFY_ROUTES_NAMESPACE ' , 'Chatify\Http\Controllers ' ),
106
111
];
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ private function routesConfigurations()
93
93
{
94
94
return [
95
95
'prefix ' => config ('chatify.path ' ),
96
- 'namespace ' => config ('chatify.namespace ' , ' Chatify\Http\Controllers ' ),
96
+ 'namespace ' => config ('chatify.namespace ' ),
97
97
'middleware ' => ['web ' , config ('chatify.middleware ' )],
98
98
];
99
99
}
You can’t perform that action at this time.
0 commit comments