hidden = !env('IS_FRAMEWORK_DEVELOPER', false); } /** * Get the console command description with framework developer indicator * * @return string */ public function getDescription(): string { $description = parent::getDescription(); // Add prefix if in framework developer mode if (env('IS_FRAMEWORK_DEVELOPER', false)) { return "[Framework Dev] {$description}"; } return $description; } }