To register your companion applications you should call this on your AppServiceProvider:
<?phpnamespaceApp\Providers;useOpenSoutheners\LaravelCompanionApps\CompanionApplication;classAppServiceProviderextendsServiceProvider{/** * Bootstrap any application services. */publicfunctionboot():void {// Rest of your code...\OpenSoutheners\LaravelCompanionApps\ServiceProvider::loadApplications([CompanionApplication::make('com.example',Platform::Android)->linkScheme('example'),CompanionApplication::make('com.example_preview',Platform::Android)->linkScheme('example'),CompanionApplication::make('com.example',Platform::Apple)->linkScheme('example')->setStoreOptions(id:'123456789', slug:'example_app') ]); }}