#0 [0]InvalidArgumentException in Manager.php line 100
Driver [Think] not supported.
{
if ($this->namespace || str_contains($type, '\\')) {
$class = str_contains($type, '\\') ? $type : $this->namespace . Str::studly($type);
if (class_exists($class)) {
return $class;
}
}
throw new InvalidArgumentException("Driver [$type] not supported.");
}
在项目根目录下执行:
composer require topthink/think-view