mordisacks / laravel-i18n
I18n Wrapper for Laravel 5.
Installs: 25
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/mordisacks/laravel-i18n
Requires
- php: >=5.4.0
- laravel/framework: 5.4.*
- mordisacks/i18n: 2.0.*
README
This package is a Laravel wrapper for I18n
Installation
composer require mordisacks/laravel-i18n
After updating composer, add the service provider to the providers array in config/app.php
MordiSacks\LaravelI18n\I18nServiceProvider::class,
Usage
Set your default locale in app.php config
This package overrides blade @lang
So the following will work
<h1>@lang('Hello :name', 'default', ['name' => 'Mordi'])</h1>
Changelog 2.1.0
- Updated to laravel 5.4