[ 'label' => 'Access Mail Authentication Provider', 'description' => 'View and access the mail authentication provider module', 'group' => 'Authentication Providers' ], ]; } public function boot(): void { $this->providerManager->register('authentication', 'mail', Provider::class); } public function registerBI(): array { return [ 'handle' => $this->handle(), 'namespace' => 'AuthenticationProviderEmail', 'version' => $this->version(), 'label' => $this->label(), 'author' => $this->author(), 'description' => $this->description(), ]; } }