适用于laravel-admin的多语言支持扩展

Installs: 51

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 19

Language:HTML

0.0.5 2019-12-12 05:47 UTC

This package is auto-updated.

Last update: 2024-04-12 15:49:56 UTC


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',
        ],
    ],

ScreenShots

login login1 language