voyager如何转换为RTL版本?

时间:2019-04-16 18:52:40

标签: laravel-5.8 voyager php-7.3

来自作曲家 “要求”:{         “ php”:“ ^ 7.1.3”,         “ fideloper / proxy”:“ ^ 4.0”,         “ laravel / framework”:“ 5.8。*”,         “ laravel / tinker”:“ ^ 1.0”,         “ tcg / voyager”:“ ^ 1.2”     }

谢谢,我想将voyager转换为rtl版本。

2 个答案:

答案 0 :(得分:2)

laravel项目中的goto config / voyager.php

您将找到一个名称为“ multilingual”的数组,将“ rtl”选项更改为true,它将对整个laravel voyager管理面板进行rtl。下面描述的代码。

'multilingual' => [
    /*
     * Set whether or not the multilingual is supported by the BREAD input.
     */
    'enabled' => false,

    /*
     * Set whether or not the admin layout default is RTL.
     */
    'rtl' => true,

    /*
     * Select default language
     */
    'default' => 'en',

    /*
     * Select languages that are supported.
     */
    'locales' => [
        'en',
        //'pt',
    ],
],

答案 1 :(得分:1)

  1. 将'rtl'=> true添加到多语言数组中的voyager文件配置中。
  2. 在app.php配置文件中将本地值更改为“ ar”或“ fa”或所有rtl语言。
  3. 使用php artisan config:cache清除配置缓存laravel