We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ae8f46 commit 94c59f8Copy full SHA for 94c59f8
src/ValueObjects/RegisteredResource.php
@@ -50,7 +50,7 @@ public function getKeyType(): string
50
*/
51
protected function qualifyControllerClass(string $controller): string
52
{
53
- if (Str::startsWith($controller, config('orion.namespaces.controllers'))) {
+ if (class_exists($controller) || Str::startsWith($controller, config('orion.namespaces.controllers'))) {
54
return $controller;
55
}
56
0 commit comments