/**
  * Show the website of an advert
  * 
  * @param  int $id The id of the advert
  * @return Redirect
  */
 public function show($id)
 {
     $advert = Advert::findOrFail($id);
     $advert->access_counter++;
     $advert->save();
     return Redirect::to($advert->url);
     // Go to advert website
 }