php artisan cache:clear
php artisan config:clear
php artisan route:clear
yapabilir veya projeyi tekrar olusturup kendi kodlarini teker teker routes.php'ye atarak deneyebilirsin, nihayetinde bende 5.2 ile birseyler karaliyorum, ve bende de calisiyor.
https://github.com/korayzorluoglu/miisAlisveris/blob/master/app/Http/routes.php
Route::group(['namespace' => 'Admin', 'prefix' => 'admin', 'middleware' => ['auth', 'role:admin']], function()
{
// Controllers Within The "App\Http\Controllers\Admin" Namespace and Prefix
Route::get('home', 'HomeController@index');
Route::resource('category', 'CategoryController');
Route::resource('currency', 'CurrencyController');
Route::get('currecy/autoupdate', ['as' => 'admin.currency.autoupdate', 'uses' => 'CurrencyController@autoUpdate']);
Route::resource('order', 'OrderController');
Route::resource('product', 'ProductController');
Route::resource('productgallery', 'ProductGalleryController');
Route::resource('user', 'UserController');
Route::resource('passworduser', 'PasswordUserController');
Route::resource('permissionuser', 'PermissionUserController');
Route::resource('roleuser', 'RoleUserController');
/*
* Elfinder and Elfinder Plugin for CKEditor
*/
Route::get('elfinder', '\Barryvdh\Elfinder\ElfinderController@showPopup');
Route::any('elfinder.connector', '\Barryvdh\Elfinder\ElfinderController@showConnector');
Route::any('elfinder.ckeditor', '\Barryvdh\Elfinder\ElfinderController@showCKeditor4');
});