aharen/language 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

aharen/language

Composer 安装命令:

composer require aharen/language

包简介

Multi language for Laravel 5.3+

README 文档

README

Multi language for Laravel 5.3+

Installations

composer require aharen/language

Configuration

Add the service provider to providers array in config/app.php

aharen\Language\LanguageServiceProvider::class,

Add the facade to aliases array in config/app.php

'Language' => 'aharen\Language\Facades\Language::class',

Run vendor:publish artisan command to publish the database migration file and the default seeder

php artisan vendor:publish

Now add the DefaultLanguageSeeder to database/DatabaseSeeder.php

$this->call(DefaultLanguageSeeder::class);

You might need to run composer dumpautoload for the seeder to start working

Optional The provided seeder will create English as the default language but you can change the seeder to any language you like.

In addition you will have to update locale and fallback_locale in config/app.php to your desired default language, since the package uses these to maintain set locale and default locale.

This will enable the use of Laravels default localization methods and directives such as 'echo trans('messages.welcome');and@lang('messages.welcome'). You can store your translations in the default resources/lang` directory.

Setup

You should add a route prefix to your routes in one of the following ways:

  1. In your routes file to the route group

     Route::group(['prefix' => \App::getLocale()], function () {
       // your routes here
     });
    
  2. Or you can modify mapWebRoutes() method in App\RouteServiceProvider as follows:

     Route::group([
         'middleware' => 'web',
         'namespace'  => $this->namespace,
         'prefix'     => \App::getLocale(),
     ], function ($router) {
         require base_path('routes/web.php');
     }); 
    

统计信息

  • 总下载量: 280
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-09-21

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固