dongliao1860 2014-03-26 09:08
浏览 68
已采纳

laravel:要在每个视图上使用的全局值

I am creating a login site with laravel. Is there a way that I can store the user's name on a variable where it can be called on the page?

I know I can store it in a session like Session::put('loginName', Auth::user()->name);

but this then I would have to also retrieve this user's name on every controller using $loginName = Session::get('loginName'); return View::make('dashboard/index')->with('loginName', $loginName);

and to get it from the view file with {{$loginName}}

I just wonder if there is a short cut so I don't have to repeat this on every controllers

  • 写回答

1条回答 默认 最新

  • duankanyi6539 2014-03-26 09:21
    关注

    In your routes.php file, do this:

    if(Auth::check()){
        $name = Auth::user()->name;
    }else{
        $name = 'Guest';
    }
    View::share('name', $name);
    

    In your view files:

    {{ $name }}
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 oracle集群安装出bug
  • ¥15 关于#python#的问题:自动化测试
  • ¥20 问题请教!vue项目关于Nginx配置nonce安全策略的问题
  • ¥15 教务系统账号被盗号如何追溯设备
  • ¥20 delta降尺度方法,未来数据怎么降尺度
  • ¥15 c# 使用NPOI快速将datatable数据导入excel中指定sheet,要求快速高效
  • ¥15 再不同版本的系统上,TCP传输速度不一致
  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题