Helen is a premium package,
get your license here
On this page
Configuration
to configure the plugin Helen, you can pass the configuration to the plugin in adminPanelProvider
these all the available configuration, and their defaults values
1HelenPlugin::make() 2 ->baseDomain('site.test') 3 ->prefix('link/') 4 ->keyLength(4) 5 ->helenModels([ 6 'Link' => \LaraZeus\Helen\Models\Link::class, 7 'Visit' => \LaraZeus\Helen\Models\Visit::class, 8 ]) 9 10 ->globallySearchableAttributes([11 // you can return empty array to disable it12 LinksResource::class => ['url', 'short_key'],13 ])14 15 ->navigationGroupLabel('Helen')16,