diff --git a/src/Laravel/Commands/TartInteractiveDemoCommand.php b/src/Laravel/Commands/TartInteractiveDemoCommand.php index 61166c0..0990799 100644 --- a/src/Laravel/Commands/TartInteractiveDemoCommand.php +++ b/src/Laravel/Commands/TartInteractiveDemoCommand.php @@ -28,9 +28,6 @@ public function handle(): int 'Development', ]); - $this->good("Environment selected: {$environment}"); - $this->br(); - $features = $this->checkboxMenu('Select TART features to enable', [ 'Spinners', 'Progress bars', @@ -39,25 +36,23 @@ public function handle(): int 'Lists', ], ['Spinners', 'Tables']); - if ($features === []) { - $this->notice('No features selected.'); - } else { - $this->good('Selected features: ' . implode(', ', $features)); - } - - $this->br(); - $theme = $this->radioMenu('Choose a theme preset', [ 'Default', 'Success', 'Error', ]); + $this->title('Selection Summary'); + $this->good("Environment selected: {$environment}"); + if ($features === []) { + $this->notice('No features selected.'); + } else { + $this->good('Selected features: ' . implode(', ', $features)); + } $this->success("Theme selected: {$theme}"); - $this->br(); $this->success('Interactive demo complete!'); return self::SUCCESS; } -} +} \ No newline at end of file