拉拉维尔设置全局变量



我如何在 Laravel 中设置全局变量,我在下面尝试过,但它没有按预期工作。

我在配置中创建了常量文件。

常量.php

return
[
'companyID' => 'Auth::user()->company',
]

用户.php

public static function TEST()
{
 return USER::Where('company',config('constants.companyID'))->get();
 }

不能在配置文件中使用auth()->user()。此外,这种方法也不对。由于auth()->user()是全局对象,因此只需使用此查询:

public static function test()
{
    return User::where('company', auth()->user()->company)->get();
}

您可以从任何类或任何视图访问auth()->user()->company

相关内容

  • 没有找到相关文章

最新更新