alias('Helper', \Modules\Admin\App\Helpers\Helpers::class); } /** * Bootstrap any application services. */ public function boot(): void { // Register any module-specific event listeners here if ($this->app->runningInConsole()) { $this->commands([ CleanInitialAvatars::class, ]); return; } // Composer para las vistas del módulo Admin View::composer('admin::layouts.vuexy.*', VuexyTemplateComposer::class); } }