/**
  * Render the object into a string.
  *
  * @return mixed
  */
 public function render()
 {
     return new Row([], [new Column(['medium' => 6, 'class' => 'text-xs-center'], [new Card([], new CardBlock([], [new HeaderOne(['class' => 'display-3'], vsprintf('%d', [count($this->report->getRan())])), new Paragraph([], new Small(['class' => 'text-uppercase text-muted'], ['Migrations ran so far']))]))]), new Column(['medium' => 6, 'class' => 'text-xs-center'], [new Card([], new CardBlock([], [new HeaderOne(['class' => 'display-3'], vsprintf('%d', [count($this->report->getIdle())])), new Paragraph([], new Small(['class' => 'text-uppercase text-muted'], ['Pending to be ran']))]))])]);
 }