如何在Laravel 5中创建多语言菜单

时间:2016-06-20 21:56:21

标签: laravel laravel-5 laravel-5.1 laravel-5.2 laravel-routing

在Laravel 5中创建主菜单的最佳方法是什么?以及如何仅在用户登录时显示菜单项?制作这种多语言的最佳方法是什么?

2 个答案:

答案 0 :(得分:7)

Laravel提供了一种使用外观Auth::check()检查用户是否已登录的简便方法。

if (Auth::check()) {
    // The user is logged in...
}

关于翻译,您可以在此处查看:Localization

结构的定义如下:根据文档:

/resources
    /lang
        /en
            messages.php
        /es
            messages.php

Laravel还提供了一种使用trans('string.to.translate')翻译短语的简便方法,可在此处trans()查看。

在messages.php内(在两个lang目录中),您必须设置翻译字符串。在en/messages.php

    return [
        'welcome' => 'Welcome'
    ];

es/messages.php

    return [
        'welcome' => 'Bienvenido'
    ];

使用这两个,您可以在应用程序中执行以下操作,例如:

    // Get the user locale, for the sake of clarity, I'll use a fixed string.
    // Make sure is the same as the directory under lang.
    App::setLocale('en'); 

view内:

    // Using blade, we check if the user is logged in.
    // If he is, we show 'Welcome" in the menu. If the lang is set to
    // 'es', then it will show "Bienvenido".
    @if (Auth::check()) 
        <ul>
            <li> {{ trans('messages.welcome') }} </li>
        </ul>
    @endif

答案 1 :(得分:-1)

尝试使用https://laravel.com/docs/5.1/authentication

例如:

if (Auth::check()) {
    return something to view
}