From e294dc07e0384fedacf3ce973bdbbacf8a79685d Mon Sep 17 00:00:00 2001 From: Kamil Niemczycki Date: Thu, 27 Jul 2023 10:47:24 +0200 Subject: [PATCH] - fix problem with informations about views --- app/Console/Commands/ListCV.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/ListCV.php b/app/Console/Commands/ListCV.php index 8d47db3..01d3314 100644 --- a/app/Console/Commands/ListCV.php +++ b/app/Console/Commands/ListCV.php @@ -26,7 +26,7 @@ class ListCV extends Command $this->line('Company: '. $resource->recipient); $this->line('Phone: '. $resource->formattedPhoneNumber .', '. $resource->PhoneNumber); $this->line('Locations: '. implode(' / ', $resource->locations)); - $this->line('Rodo: '. $resource->rodo); + $this->line('Views: '. $resource->views); $this->line(''); }