inspirapuntodo/easy-locale-for-laravel

Easily manage your localization in your laravel app

0.1.1 2024-01-08 16:21 UTC

This package is auto-updated.

Last update: 2024-05-08 17:05:51 UTC


README

Total Downloads Latest Version License

Easy Locale for Laravel

Easy Locale for Laravel is a package intended to make working with localization easier.

Installation

Here's how you track your website with Easy Locale for Laravel:

Requires PHP 8.1+

First, install Easy Locale for Laravel via the Composer package manager:

composer require inspirapuntodo/easy-locale-for-laravel

Next, add the following to config/app.php according to your locales, ex:

/*
|--------------------------------------------------------------------------
| Available locales
|--------------------------------------------------------------------------
|
| All locales supported by your application
| Format:
| - locale_key => locale_name
*/
'available_locales' => [
    'es' => 'Español',
    'en' => 'English',
]

Usage

php artisan make:locale {locale_path}

Ex:

php artisan make:locale locations.cities

Expected output:

Creating localization files for: locations/cities

CREATED 🌎🌍🌏 es/locations/cities 🎉

CREATED 🌎🌍🌏 en/locations/cities 🎉

Hasta luego! 👋

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Contributors

Cesar Mendez (@Activ3mined)

Easy Locale for Laravel is an open-sourced software licensed under the MIT license.