guillermomartinez / filemanager-laravel

FileManager for Laravel integrated with TinyMCE
http://laravel-filemanager.rhcloud.com/
MIT License
89 stars 41 forks source link

error: NotFoundHttpException in RouteCollection.php line 145: #13

Closed evgeniy2194 closed 8 years ago

evgeniy2194 commented 9 years ago

image image

alex-petrea commented 9 years ago

I fixed it by adding the routes individually like so

Route::get('admin/filemanager', array(
        'as' => 'adminFileManager',
        'uses' => 'FilemanagerLaravelController@getConnectors'
    ));
    Route::post('admin/filemanager', array(
        'as' => 'adminFileManager',
        'uses' => 'FilemanagerLaravelController@postConnectors'
    ));