diff --git a/src/Console/InstallCommand.php b/src/Console/InstallCommand.php index 933140d..ac059c1 100644 --- a/src/Console/InstallCommand.php +++ b/src/Console/InstallCommand.php @@ -4,6 +4,7 @@ use Illuminate\Console\Command; use Illuminate\Filesystem\Filesystem; +use Illuminate\Support\Arr; use Illuminate\Support\Facades\File; use Illuminate\Support\Str; @@ -66,6 +67,10 @@ public function handle() $this->info("Language [{$locale}] installed successfully, but it isn't the default language."); } + if (in_array('jetstream-ext', $discoveredPackages)) { + unset($discoveredPackages[array_search('jetstream-ext', $discoveredPackages)]); + } + if (!empty($discoveredPackages)) { $this->info( 'Translations for [' . implode(', ', $discoveredPackages) . '] '