diff --git a/src/NewCommand.php b/src/NewCommand.php index 8370000..a203c87 100644 --- a/src/NewCommand.php +++ b/src/NewCommand.php @@ -209,7 +209,14 @@ protected function execute(InputInterface $input, OutputInterface $output): int $output->writeln(''); } - $output->writeln(" INFO Application ready in [{$name}]. Build something amazing.".PHP_EOL); + $output->writeln(" INFO Application ready in [{$name}]. You can start your local development using:".PHP_EOL); + + $output->writeln('cd '.$name.''); + $output->writeln('php artisan serve'); + $output->writeln(''); + + $output->writeln(' New to Laravel? Check out our bootcamp and documentation. Build something amazing!'); + $output->writeln(''); } return $process->getExitCode();