Laravel 5.0.33 Illuminate\Database\Eloquent\Model not found in line 5

659 views Asked by At

Here is my file Email.php in app, it is very simple but it doesn't work:

<?php
    namespace App;
    use Illuminate\Database\Eloquent\Model;

    class Email extends Model {
        protected $table = 'emails';
        public $timestamps = false;
    }
?>

Laravel 5.0.33 Illuminate\Database\Eloquent\Model not found in line 5

0

There are 0 answers