joedixon/nova-translation is a Laravel package for a laravel nova tool..
It currently has 51 GitHub stars and 80.213 downloads on Packagist (latest version v1.0.0).
Install it with composer require joedixon/nova-translation.
Discover more Laravel packages by joedixon
or browse all Laravel packages to compare alternatives.
Last updated

Translation management for your Nova application.

Nova Translation is a tool for Laravel Nova which allows you full control over your translations when using Laravel's localization functionality.
The package allows you to manage your translations using either the native file based translations, but also provides a database driver which is useful in multi-server setups.
It exposes a user interface allowing you to update existing and add new translations to your application.
Below are a full list of features:
From the root of your Nova application run the following:
composer require joedixon/nova-translation
Open NovaServiceProvider.php and add update the registerTools method as
follows:
<?php
namespace Laravel\Nova;
...
use Joedixon\NovaTranslation\NovaTranslation;
class NovaServiceProvider extends ServiceProvider
{
...
protected function registerTools()
{
Nova::tools([
...
new NovaTranslation,
]);
}
}
Note: Under the hood, this tool uses the joedixon/laravel-translation package. You
can find configuration instructions here.