简体   繁体   中英

Class 'App\Eloquent' not found in laravel after running php artisan db:seed

<?php

namespace App;

use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableInterface;

class User extends Eloquent implements UserInterface, RemindableInterface 
{

}

Your model should extend the Model class:

use Illuminate\Database\Eloquent\Model;
class User extends Model

If you want to use Laravel authentication system, it should extend Illuminate\\Foundation\\Auth\\User :

use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM