From 220c739b51b6945b9ca48a2acb9794932dfa206c Mon Sep 17 00:00:00 2001 From: Brandon Date: Tue, 13 Aug 2024 01:04:23 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20Improve=20the=20summary=20format?= =?UTF-8?q?ting?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Console/MakeCommand.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Console/MakeCommand.php b/src/Console/MakeCommand.php index 7ab19e74..70ee0af1 100644 --- a/src/Console/MakeCommand.php +++ b/src/Console/MakeCommand.php @@ -227,7 +227,10 @@ protected function createView() */ protected function summary() { - $this->line(''); + if (! Str::contains($this->type, ['Block', 'Widget'])) { + $this->newLine(); + } + $this->line("🎉 {$this->getNameInput()} {$this->getType()} successfully composed."); $this->line(" ⮑ {$this->shortenPath($this->path)}");