我如何更改 auth laravel 6 中的默认用户 table

How can i change the default user table in auth laravel 6

我需要将 Auth 默认值 table 更改为另一个 table。我正在使用 Laravel 6

config\auth.php 中编辑以更改默认 auth 模型 你可以参考这个change default auth作为参考

您可以通过编辑 config\auth.php 第 65 行左右

来更改它
   'providers' => [
        'users' => [
            'driver' => 'database',
            'table' => 'ANOTHER_TABLE',
        ],