laravel-admin-extensions-fixed / multi-language
适用于laravel-admin的多语言支持扩展
0.0.5
2019-12-12 05:47 UTC
Requires
- php: >=7.0.0
- encore/laravel-admin: ~1.6
Requires (Dev)
- phpunit/phpunit: ~6.0
README
Install
composer require laravel-admin-extensions-fixed/multi-language
Config
First, add extension config
In config/admin.php
'extensions' => [
'multi-language' => [
'enable' => true,
// the key should be same as var locale in config/app.php
// the value is used to show
'languages' => [
'en' => 'English',
'zh-CN' => '简体中文',
],
// default locale
'default' => 'zh-CN',
],
],
Then, add except route to auth
In config/admin.php
, add locale
to auth.excepts
'auth' => [
...
// The URIs that should be excluded from authorization.
'excepts' => [
'auth/login',
'auth/logout',
// add this line !
'locale',
],
],