You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(! class_exists($class)) {
foreach ($this->missingComponentResolvers as $resolve) {
if ($resolved = $resolve($nameOrClass)) {
$this->component($nameOrClass, $resolved);
$class = $this->aliases[$nameOrClass];
break;
}
}
}
}
// Now that we have a class, we can check that it's actually a Livewire component...
if (! is_subclass_of($class, Component::class)) {
throw new ComponentNotFoundException(
"Unable to find component: [{$nameOrClass}]"
);
}
// Convert it to a name even if a name was passed in to make sure we're using deterministic names...
$name = $this->classToName($class);
return [$class, $name];
}
``
The text was updated successfully, but these errors were encountered:
``
D:\laragon\www\Blog-Advanced-With-Laravel10-TailwindCSS-And-AdminLTE3\vendor\livewire\livewire\src\Mechanisms\ComponentRegistry
.php
: 116
``
The text was updated successfully, but these errors were encountered: