Skip to the content.

Creating a language(json)

To create a language, we use the “php artisan make:module:language ModuleName language” command.

php artisan make:module:language blog en

This will create a language in the path modules/blog/languages/en.json

After creating the language file, we need to call the created file in the desired module’s ServiceProvider.php


    /**
     * Bootstrap the module services.
     *
     * @return void
     */
    public function boot()
    {
        $this->registerJsonTranslations();
    }