我的数据库中有一些数据要通过迁移保留,我使用iSeed帮助我从数据中生成种子。但是,当我尝试使用
运行种子时php artisan db:seed
我收到错误,说:
PHP致命错误:无法使用Illuminate \ DatabaseModel \ Model作为模型,因为该名称已在第7行的laravel / app / User.php中使用
所以,我进入User.php,并更改了这一行(实际上是第6行,而不是第7行):
use Illuminate\Database\Eloquent\Model;
到此:
use Illuminate\Database\Eloquent\Model as BaseModel;
我还将其更改为扩展BaseModel而不是Model。 奇怪的是,我仍然得到相同的错误,仍然是User.php。我试过运行composer dumpautoload,但这没有帮助。据我所知,使用它作为BaseController应该已经修复了问题,但事实并非如此。我究竟做错了什么?谢谢您的帮助。
编辑:包括模型的完整代码
<?php
namespace App;
use Illuminate\Auth\Authenticatable;
use Illuminate\Database\Eloquent\Model;
use Illuminate\DatabaseModel\Model;
use Illuminate\Auth\Passwords\CanResetPassword;
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;
class User extends Model implements AuthenticatableContract, CanResetPasswordContract
{
use Authenticatable, CanResetPassword;
/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'users';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['name', 'email', 'password'];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = ['password', 'remember_token'];
}