This commit is contained in:
Saeed Vaziry
2025-02-20 18:00:13 +01:00
parent 49137a757b
commit abe27cde01
20 changed files with 550 additions and 9 deletions

View File

@ -38,11 +38,18 @@ class WebServiceProvider extends ServiceProvider
*/
public function register(): void
{
if ($this->app->runningInConsole()) {
return;
}
Filament::registerPanel($this->panel(Panel::make()));
}
public function boot(): void
{
if ($this->app->runningInConsole()) {
return;
}
FilamentView::registerRenderHook(
PanelsRenderHook::SIDEBAR_NAV_START,
fn () => Livewire::mount(SelectProject::class)