This question has long been tormenting me, but I really can’t really understand where to correctly point the path '/' and where '\'. Now I have encountered this problem on Laravel
Route::get('/admin', 'Admin/AdminController@index'); - выдает ошибку Route::get('/admin', 'Admin\AdminController@index'); - работает The same thing in Codigniter one function returns the path as root/folder/file another roote\foolder\file explain the difference please.
Admin\AdminControlleris theAdminControllerclass in the namespaceAdmin- apelsinka223