/**
  * Shows cases overview
  *
  * @return view
  */
 public function index()
 {
     $secondsAgo = $this->log->secondsAgo('fetching');
     if (!$secondsAgo) {
         $this->initIds();
     }
     $cases = $this->case->visibleCases();
     return view('crm-launcher::cases.index')->with('cases', $cases);
 }