当我想要访问我的登录路线时,它就把我扔了,并且错误就像这样
(1/1)FatalErrorException 命名空间声明语句必须是第一个语句或在脚本中的任何声明调用之后 在User.php(第3行)
但UserController的命名空间设置默认为laravel
这是定义的用户控制器命名空间
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use Notifiable;