diff --git a/src/Console/InstallCommand.php b/src/Console/InstallCommand.php index 71c88549..d4928936 100644 --- a/src/Console/InstallCommand.php +++ b/src/Console/InstallCommand.php @@ -34,7 +34,6 @@ public function handle() $this->components->info('Installing Horizon resources.'); collect([ - 'Assets' => fn () => $this->callSilent('vendor:publish', ['--tag' => 'horizon-assets']) == 0, 'Service Provider' => fn () => $this->callSilent('vendor:publish', ['--tag' => 'horizon-provider']) == 0, 'Configuration' => fn () => $this->callSilent('vendor:publish', ['--tag' => 'horizon-config']) == 0, ])->each(fn ($task, $description) => $this->components->task($description, $task));