Skip to content

Commit

Permalink
[5.x] Improves ending message (#307)
Browse files Browse the repository at this point in the history
* Improves ending message

* Update NewCommand.php

---------

Co-authored-by: Taylor Otwell <[email protected]>
  • Loading branch information
nunomaduro and taylorotwell authored Jan 23, 2024
1 parent e5a3ce8 commit 0a1db0c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/NewCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,14 @@ protected function execute(InputInterface $input, OutputInterface $output): int
$output->writeln('');
}

$output->writeln(" <bg=blue;fg=white> INFO </> Application ready in <options=bold>[{$name}]</>. Build something amazing.".PHP_EOL);
$output->writeln(" <bg=blue;fg=white> INFO </> Application ready in <options=bold>[{$name}]</>. You can start your local development using:".PHP_EOL);

$output->writeln('<fg=gray>➜</> <options=bold>cd '.$name.'</>');
$output->writeln('<fg=gray>➜</> <options=bold>php artisan serve</>');
$output->writeln('');

$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!</>');
$output->writeln('');
}

return $process->getExitCode();
Expand Down

0 comments on commit 0a1db0c

Please sign in to comment.