match (true) { preg_match('/^[a-zA-Z].*/', $value) !== false => null, default => 'The ID must start with a letter, and not a number or special character.', }, )); $class = (string) str($id) ->studly() ->append('PanelProvider'); $path = app_path( (string) str($class) ->prepend('Providers/Filament/') ->replace('\\', '/') ->append('.php'), ); if (! $force && $this->checkForCollision([$path])) { return false; } if (empty(Filament::getPanels())) { $this->copyStubToApp('DefaultPanelProvider', $path, [ 'class' => $class, 'id' => $id, ]); } else { $this->copyStubToApp('PanelProvider', $path, [ 'class' => $class, 'directory' => str($id)->studly(), 'id' => $id, ]); } $isLaravel11OrHigherWithBootstrapProvidersFile = version_compare(App::version(), '11.0', '>=') && /** @phpstan-ignore-next-line */ file_exists($bootstrapProvidersPath = App::getBootstrapProvidersPath()); if ($isLaravel11OrHigherWithBootstrapProvidersFile) { /** @phpstan-ignore-next-line */ ServiceProvider::addProviderToBootstrapFile( "App\\Providers\\Filament\\{$class}", /** @phpstan-ignore-next-line */ $bootstrapProvidersPath, ); } else { $appConfig = file_get_contents(config_path('app.php')); if (! Str::contains($appConfig, "App\\Providers\\Filament\\{$class}::class")) { file_put_contents(config_path('app.php'), str_replace( 'App\\Providers\\RouteServiceProvider::class,', "App\\Providers\\Filament\\{$class}::class," . PHP_EOL . ' App\\Providers\\RouteServiceProvider::class,', $appConfig, )); } } $this->components->info("Filament panel [{$path}] created successfully."); if ($isLaravel11OrHigherWithBootstrapProvidersFile) { $this->components->warn("We've attempted to register the {$class} in your [bootstrap/providers.php] file. If you get an error while trying to access your panel then this process has probably failed. You can manually register the service provider by adding it to the array."); } else { $this->components->warn("We've attempted to register the {$class} in your [config/app.php] file as a service provider. If you get an error while trying to access your panel then this process has probably failed. You can manually register the service provider by adding it to the [providers] array."); } return true; } }