public function destroy($id)
 {
     Addressbook::whereId($id)->delete();
     return Redirect::to('dashboard/lists')->withSuccess('List destroyed.');
 }