| Package Data | |
|---|---|
| Maintainer Username: | illuminate3 |
| Maintainer Contact: | carsten.sapporo@gmail.com (Illuminate3) |
| Package Create Date: | 2013-10-21 |
| Package Last Update: | 2015-02-27 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-30 03:04:42 |
| Package Statistics | |
|---|---|
| Total Downloads: | 150 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 5 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Use my new package called Kotoba for Laravel 5. I will no longer support this.
Baseline language files for Laravel4.
0.8.0
1.) Add to composer.json in the require statement:
"require": {
"illuminate3/lingos": "dev-master",
...
},
2.) Add to the app.php providers list
'Illuminate3\Lingos\LingosServiceProvider',
{{ Lang::get('lingos::auth.register') }}
real world examples:
{{ Lang::get('lingos::filename.word') }}
{{ trans('lingos::filename.word') }}
lingos:: // The package name auth. // The language file name register // The phrase or word that you want to call
Result: Register
Note: Sometimes you have words or phrases that can fall into both the button and general categories. I separated these since you might want to have them slightly different, like capitalizations or similar.