Skip to content
update wiki authored by Vladimir Schneider's avatar Vladimir Schneider
......@@ -129,6 +129,10 @@
make it available at `http://yourdomain.com/translations`. Add the following to your
`routes/web.php` file:
```php
use Vsch\TranslationManager\Translator;
```
```php
\Route::group(['middleware' => 'web', 'prefix' => 'translations'], function () {
Translator::routes();
......
......