argument('id')))) { $this->error('CV not found!'); return Command::FAILURE; } $this->line('ID: '. $cv->id); $this->line('Token: '. $cv->token); $this->line('Company: '. $cv->recipient); $this->line('Phone: '. $cv->formattedPhoneNumber .', '. $cv->PhoneNumber); $this->line('Locations: '. implode(' / ', $cv->locations)); $this->line('Views: '. $cv->views); $this->line('Mission: '. (is_null($mission = $cv->mission) ? 'domyślne' : $mission)); $this->line('Rodo: '. (is_null($rodo = $cv->rodo) ? 'domyślne' : $rodo)); $this->line(''); $this->line('Showed list:'); foreach ($cv->info()->orderByDesc('id')->get() as $cvInfo) { $this->line('ID: '. $cvInfo->id); $this->line('IP: '. $cvInfo->ip); $this->line('Date: '. $cvInfo->created_at->format('d-m-Y H:i:s')); $this->line(''); } return Command::SUCCESS; } }