warn(sprintf($header, 'ID', 'Type', 'Product', 'Name', 'Active', 'Status', 'Start', 'Stop', 'Connect', 'First', 'Next', )); foreach (Service::cursor() as $o) { if ((! $this->option('inactive')) && (! $o->isActive())) continue; if ($this->option('type') && ($o->product->getCategoryAttribute() !== $this->option('type'))) continue; $c = $o->invoiced_items ->filter(fn($item)=>$item->item_type === 0) ->sortby('start_at') ->first(); if ($this->option('fix') && (! $o->start_at) && $c && $c->start_at && $o->type && $o->type->connect_at && $c->start_at->format('Y-m-d') == $o->type->connect_at->format('Y-m-d')) { $o->start_at = $o->type->connect_at; $o->save(); } $this->info(sprintf($header, $o->lid, $o->product->getCategoryNameAttribute(), substr($o->product->getNameAttribute(),0,35), substr($o->name_short,0,40), $o->active ? 'active' : 'inactive', $o->status, $o->start_at?->format('Y-m-d'), $o->stop_at?->format('Y-m-d'), ($o->type && $o->type->connect_at) ? $o->type->connect_at->format('Y-m-d') : NULL, ($c && $c->start_at) ? $c->start_at->format('Y-m-d') : NULL, $o->invoice_next?->format('Y-m-d'), )); } } }