1. Go to this page and download the library: Download langnonymous/lang library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
L::Panel('admin');
L::LangNonymous();
Route::group(['middleware'=>'Lang'],function(){
// put all routes here please ...i'ts fine :)
});
return [
'UserModeLang'=>true, // true,false | if you want save lang in User Tbl Set true auto detected user lang
'LangRoute'=>'langnonymous', // Route Name You Can Change Route Name
'column_lang'=>'lang', // You May put The Defualt column if you are enable UserModeLang for true
'languages'=>['ar','en','es','jp'], // Put Your Language website Usage
'defaultLanguage'=>'ar', // Set Your Default Language (ar,en,es Any Short Lang From languages array)
'redirectAfterSet'=>'back', //Set Direction home,back | Back reflect to function back | home to index or other route
];
app('lang');
app('l');
// if you want methods !! okay that's was easy
L::lang();
L::l();
// master session
session('anonylang');
// you have a style directions !! don't worry
// use this singletone in your file css or js :) whatever like example.com/css/style-rtl.css :) or rtl
app('dir'); // RTL OR LTR
L::dir(); // RTL or LTR
//example.com/css/style-{{app('dir')}}.css from link tag
//example.com/js/jquery-{{app('dir')}}.css from script tag
// attention
//if you are enable UserModeLang .. you should add column name to column_lang from user table in sql
// you maybe make a new folders to usage this array 'languages'=>['ar','en','es','jp']
/*
resource/lang/ar
set file name and put this array
return [
'ar'=>'العربية',
'en'=>'English',
'es'=>'Spanish',
'jp'=>'日本の',
'welcome'=>'مرحبا',
];
demo trans('yourfile.welcome') // مرحبا
resource/lang/en
set file name and put this array
return [
'ar'=>'العربية',
'en'=>'English',
'es'=>'Spanish',
'jp'=>'日本の',
'welcome'=>'Welcome',
];
demo trans('yourfile.welcome') // welcome
resource/lang/es
set file name and put this array
return [
'ar'=>'العربية',
'en'=>'English',
'es'=>'Spanish',
'jp'=>'日本の',
'welcome'=>'bienvenida',
];
demo trans('yourfile.welcome') // bienvenida
resource/lang/jp
set file name and put this array
return [
'ar'=>'العربية',
'en'=>'English',
'es'=>'Spanish',
'jp'=>'日本の',
'welcome'=>'もしもし',
];
demo trans('yourfile.welcome') // もしもし
or you can custom any language needed want
*/
// to set lang on your web okay follow this
// in blade file put master language
<a href="{{L::put('ar')}}">{{trans('yourfile.ar')}}</a>
<a href="{{L::put('en')}}">{{trans('yourfile.en')}}</a>
<a href="{{L::put('es')}}">{{trans('yourfile.es')}}</a>
<a href="{{L::put('jp')}}">{{trans('yourfile.jp')}}</a>
// or you can loop all automatically with method L::all();
@foreach(L::all() as $lang)
<a href="{{L::put($lang)}}">{{trans('yourfile.'.$lang)}}</a> .
@endforeach
// for singleton
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.