Skip to content

Commit 2b60742

Browse files
committed
Add console feedback
1 parent cd3d5f6 commit 2b60742

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/InstallCommand.php

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,25 @@ public function handle(
1919
FortifyInstaller $fortifyInstaller,
2020
JetstreamInstaller $jetstreamInstaller
2121
) {
22+
$this->info('Installing for Laravel...');
2223
$laravelInstaller->install();
2324

25+
26+
2427
if ($fortifyInstaller->enabled()) {
28+
$this->info('Installing for Fortify...');
2529
$fortifyInstaller->install();
2630
}
2731

2832
if ($jetstreamInstaller->enabled()) {
33+
$this->info('Installing for Jetstream...');
2934
$jetstreamInstaller->install();
3035
}
3136

32-
37+
$this->info('Running composer dump autoload...');
3338
$this->updateComposer();
39+
40+
$this->info('All done!');
3441
}
3542

3643

0 commit comments

Comments
 (0)