Telescope 在生產環境配置的許可權,還是彈出 403 頁面

黃威發表於2018-12-29

原來是從Laravel5.3版本 一路升級上來的,現在版本是5.7

protected function gate()
{
    Gate::define('viewTelescope', function ($user) {
        return in_array($user->email, [
            'taylor@laravel.com',
        ]);
    });
}

相關文章