/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public static function tracker()
 {
     $keywords = Keywords::all();
     $referents = TwitterReferent::all();
     $match = Self::referentTracker($keywords, $referents);
     return $match;
 }