datalogix/laravel-translation

Laravel translation is a package the power of register paths of translations.

v2.0.0 2023-07-18 18:49 UTC

This package is auto-updated.

Last update: 2024-04-18 20:34:46 UTC


README

Latest Stable Version Total Downloads tests StyleCI codecov License

Laravel translation is a package the power of register paths of translations.

Features

  • Manipulate the paths of your translations as you like
  • Register many paths to translations

Installation

You can install the package via composer:

composer require datalogix/laravel-translation

The package will automatically register itself.

Usage

// app/Providers/AppServiceProvider.php

public function boot()
{
    $this->callAfterResolving('translator', function ($translator) {
        $translator->addPath(__DIR__.'/../lang');
    });
}