diff --git a/src/Commands/FakerGenerator.php b/src/Commands/FakerGenerator.php index c8c8847..fb5aab9 100644 --- a/src/Commands/FakerGenerator.php +++ b/src/Commands/FakerGenerator.php @@ -40,7 +40,8 @@ public function handle(): int { try { $generate = NaijaFaker::person(); - $this->info($generate); + $output = print_r($generate, true); + $this->info($output); } catch (\Exception $e) { $this->error("Error:: {$e->getMessage()}"); }