public function getDelete($id)
 {
     $Adsense = Adsense::find($id);
     $Adsense->delete();
     return Redirect::action('AdsenseController@getIndex')->with('message', 'Deleted!');
 }