Coder Social home page Coder Social logo

natthasath / demo-laravel-multi-lang Goto Github PK

View Code? Open in Web Editor NEW
0.0 0.0 0.0 116 KB

Laravel MultiLang simplifies multilingual content management, allowing dynamic language switching for an enhanced user experience. Streamline translation integration effortlessly with this Laravel package.

Home Page: https://laravel.com/docs/master/localization

PHP 60.57% JavaScript 0.59% CSS 0.03% Blade 38.80%
breeze laravel multiple-languages php 10x

demo-laravel-multi-lang's Introduction

๐ŸŽ‰ DEMO Laravel Multi Lang

Laravel MultiLang simplifies multilingual content management, allowing dynamic language switching for an enhanced user experience. Streamline translation integration effortlessly with this Laravel package.

version rating uptime

๐Ÿš€ Setup

  • Install Package
composer require outhebox/blade-flags
php artisan vendor:publish --tag=blade-flags-config
  • Use Directory
/lang
    /en
        messages.php
    /es
        messages.php
  • Use JSON
/lang
    en.json
    es.json
  • Set Locale Configuration
'locale' => 'en',
'fallback_locale' => 'en',
  • Check Locale in Route
Route::get('/greeting/{locale}', function ($locale) {
    if (! in_array($locale, ['en', 'th'])) {
        abort(400);
    }

    App::setLocale($locale);

    $locale = App::currentLocale();
    print($locale);
});
  • Create Migration User Table
php artisan make:migration create_users_table --create=users
php artisan migrate
php artisan make:model Models\\User

๐Ÿ† Run

npm run dev
php artisan serve

demo-laravel-multi-lang's People

Contributors

natthasath avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.