Skip to content

Commit 0a1db0c

Browse files
[5.x] Improves ending message (#307)
* Improves ending message * Update NewCommand.php --------- Co-authored-by: Taylor Otwell <[email protected]>
1 parent e5a3ce8 commit 0a1db0c

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/NewCommand.php

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,14 @@ protected function execute(InputInterface $input, OutputInterface $output): int
209209
$output->writeln('');
210210
}
211211

212-
$output->writeln(" <bg=blue;fg=white> INFO </> Application ready in <options=bold>[{$name}]</>. Build something amazing.".PHP_EOL);
212+
$output->writeln(" <bg=blue;fg=white> INFO </> Application ready in <options=bold>[{$name}]</>. You can start your local development using:".PHP_EOL);
213+
214+
$output->writeln('<fg=gray>➜</> <options=bold>cd '.$name.'</>');
215+
$output->writeln('<fg=gray>➜</> <options=bold>php artisan serve</>');
216+
$output->writeln('');
217+
218+
$output->writeln(' New to Laravel? Check out our <href=https://bootcamp.laravel.com>bootcamp</> and <href=https://laravel.com/docs/installation#next-steps>documentation</>. <options=bold>Build something amazing!</>');
219+
$output->writeln('');
213220
}
214221

215222
return $process->getExitCode();

0 commit comments

Comments
 (0)