Laravel Telescope 403制作
Laravel Telescope 403 production
无论如何都不能在生产中为我工作:
protected function gate()
{
Gate::define('viewTelescope', function ($user) {
return true;
});
}
在生产中总是给我 403,以为正在创建数据库条目。
问题是我使用的是自定义 "admin" 守卫,而 laravel telescope 没有专门更改守卫的选项,因此我不得不将 "admin" "config/auth" 文件中的默认守卫:
'defaults' => [ 'guard' => 'admin', 'passwords' => 'users', ],
无论如何都不能在生产中为我工作:
protected function gate()
{
Gate::define('viewTelescope', function ($user) {
return true;
});
}
在生产中总是给我 403,以为正在创建数据库条目。
问题是我使用的是自定义 "admin" 守卫,而 laravel telescope 没有专门更改守卫的选项,因此我不得不将 "admin" "config/auth" 文件中的默认守卫:
'defaults' => [ 'guard' => 'admin', 'passwords' => 'users', ],