outl1ne / nova-translations-loader by Tarpsvo

This Laravel Nova package helps developers load translations into their packages.
1,671,200
39
4
Package Data
Maintainer Username: Tarpsvo
Package Create Date: 2020-09-15
Package Last Update: 2024-03-13
Language: PHP
License: MIT
Last Refreshed: 2024-04-29 15:00:32
Package Statistics
Total Downloads: 1,671,200
Monthly Downloads: 119,872
Daily Downloads: 4,234
Total Stars: 39
Total Watchers: 4
Total Forks: 37
Total Open Issues: 1

Nova Translations Loader

Latest Version on Packagist Total Downloads

This Laravel Nova package helps developers load translations into their packages.

Requirements

  • php: >=8.0
  • laravel/framework: ^9.0
  • laravel/nova: ^4.0

Installation

Install the package in a Laravel Nova project via Composer:

composer require outl1ne/nova-translations-loader

Usage

Inside a Laravel's ServiceProvider, use the LoadsNovaTranslations trait and call $this->loadTranslations():

use Outl1ne\NovaTranslationsLoader\LoadsNovaTranslations;

class SomePackagesServiceProvider extends ServiceProvider
{
    use LoadsNovaTranslations;

    public function boot()
    {
        // ...

        /**
         * Loads translations into the Nova system.
         *
         * @param string $packageTranslationsDir The directory for the packages' translation files.
         * @param string $packageName The name of the current package (ie 'nova-menu-builder').
         * @param boolean $publishTranslations Whether to also automatically make translations publishable.
         * @return null
         **/

        $this->loadTranslations(__DIR__ . '/../resources/lang', 'nova-package', true);

        // ...
    }
}

Credits

License

Nova Translations Loader is open-sourced software licensed under the MIT license.