[ 'label' => 'Access Chrono Provider Local', 'description' => 'View and access the local chrono provider module', 'group' => 'Calendar Providers' ], ]; } public function boot(): void { $this->providerManager->register(ProviderInterface::TYPE_CHRONO, 'default', Provider::class); } public function registerBI(): array { return [ 'handle' => $this->handle(), 'namespace' => 'ChronoProviderLocal', 'version' => $this->version(), 'label' => $this->label(), 'author' => $this->author(), 'description' => $this->description() ]; } }