Laravel Translation is a Laravel which we can use to manage translations for our Laravel application.

laravel translations

Features

File and database drivers

Database translation loader (automatically load translations from the database when Laravel's translation retrieval methods and the database driver)

User interface to add new languages and add and update translations

Artisan commands to manage your translations

Scan your application for missing translations

Installation

Install the package via Composer

composer require joedixon/laravel-translation

Publish configuration and assets

php artisan vendor:publish --provider="JoeDixon\Translation\TranslationServiceProvider"

The service provider is loaded automatically using package discovery.

Source Code

https://github.com/joedixon/laravel-translation