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