Sunday, April 16, 2017

How can to fix Interface "App\Illuminate\Contracts\Auth\Aunthenticatable' not found" in laravel

this my code :

use Illuminate\Database\Eloquent\Model;

use Illuminate\Auth\Authenticatable;

class Admin extends Model implements Illuminate\Contracts\Auth\Aunthenticatable { use Authenticatable;

}

but it said "App\Illuminate\Contracts\Auth\Aunthenticatable not found"



via user3065621

Advertisement