public function index()
 {
     $user_id = Session::get('user_id');
     $param['member'] = MembersModel::find($user_id);
     $param['address'] = AddressModel::all();
     $param['category'] = CategoryModel::whereRaw(true)->orderBy('category', 'asc')->get();
     $param['industry'] = IndustryModel::whereRaw(true)->orderBy('industry', 'asc')->get();
     $param['tags'] = TagsModel::whereRaw(true)->orderBy('tags', 'asc')->get();
     $param['company'] = CompanyModel::whereRaw(true)->orderBy('companyName', 'asc')->get();
     $param['type'] = TypeModel::whereRaw(true)->orderBy('type', 'asc')->get();
     return View::make('user.contact.index')->with($param);
 }