Nova Translation Editor
Installation
composer require dive-be/nova-translation-editorYou must publish and run the migrations to create the language_lines table:
php artisan vendor:publish --provider="Dive\NovaTranslationEditor\ToolServiceProvider" --tag="migrations"
php artisan migrateOptionally you could publish the config file using this command.
php artisan vendor:publish --provider="Dive\NovaTranslationEditor\ToolServiceProvider" --tag="config"Register the tool in NovaServiceProvider.
public function tools()
{
return [
new NovaTranslationEditor(),
];
}Publish the translations via the nova tool or via command line:
php artisan nova-translation-editor:publishUsage
TODO
Credits
License
The MIT License (MIT). Please see License File for more information.