codebuglab/nova-translation-editor is a Laravel package for laravel nova translation editor.
It currently has 0 GitHub stars and 82 downloads on Packagist (latest version 1.3.1).
Install it with composer require codebuglab/nova-translation-editor.
Discover more Laravel packages by codebuglab
or browse all Laravel packages to compare alternatives.
Last updated
This is a laravel nova package to manage/edit your translations. It depends on spatie/laravel-translation-loader.

auth, validation, etc.)First, make sure that you have installed and configured spatie/laravel-translation-loader.
Install this package with composer and publish the config
composer require codebuglab/translation-editor
php artisan vendor:publish --provider="codebuglab\NovaTranslationEditor\ToolServiceProvider"
Add this nova tool to your NovaServiceProvider (app/Providers/NovaServiceProvider.php):
public function tools()
{
return [
...
new \codebuglab\NovaTranslationEditor\NovaTranslationEditor()
];
}
Currently there are two configuration options:
return [
'groups' => [],
'languages' => [
'en'
]
];
Here you can set which groups you want to show in the editor. You can add as many groups you want, for example auth, validation or even your own translation group.
Here you set, which languages you use. Default is en, but you can set other languages like de for german or es for spanish, etc.
You can filter each tab by key AND any string in (any) translation:

Please see CHANGELOG for more information what has changed recently.