Add Component Resolver for Modules
This commit is contained in:
parent
ddaa1a5027
commit
6b40951b9e
|
@ -35,6 +35,16 @@ class BaseServiceProvider extends ServiceProvider
|
||||||
$self = $this;
|
$self = $this;
|
||||||
return $condition ? $self->merge([$key => $attributes]) : $self;
|
return $condition ? $self->merge([$key => $attributes]) : $self;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
Livewire::resolveMissingComponent(function ($name) {
|
||||||
|
'modules.dashboard.components.dashboard-component';
|
||||||
|
if (str($name)->startsWith('modules.')) {
|
||||||
|
return str($name)->explode('.')->map(fn ($name) => str($name)->studly()->toString())->implode('\\');
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue