Exemplo n.º 1
0
 public function whoisPost()
 {
     $domains = Input::get('domains');
     $lookup = new Whois\Whois($domains);
     $results = $lookup->showResults();
     return View::make('results')->withResults($results);
 }