vsch / laravel-translation-manager

Enhanced Management of Laravel 4 & 5 Translations, with Yandex Translation API assisted translations.
MIT License
181 stars 84 forks source link

Package not autodiscovered on Laravel 6.2 #155

Open anamaria85 opened 4 years ago

anamaria85 commented 4 years ago

I tried to install your package on Laravel 6.2 and installation was successfull but the package was not autodiscovered.

`composer require vsch/laravel-translation-manager Using version ^6.0 for vsch/laravel-translation-manager ./composer.json has been updated Loading composer repositories with package information Updating dependencies (including require-dev) Package operations: 4 installs, 0 updates, 0 removals

noge075 commented 4 years ago

Hi! Is there any update on that? I using the providers in the config/app.php, but if I try to generate editable links in the in place edit option I get this error: Action Vsch\TranslationManager\Controller@postEdit not defined.

As I see the method exists in the controller, so I think there is some classmap problem.

Thank you! EDIT: Here is the action generation: $action = URL::action(ManagerServiceProvider::CONTROLLER_PREFIX . 'Vsch\TranslationManager\Controller@postEdit', array($t->group));