/**
  *
  */
 public function addPlace()
 {
     // Get Category Group
     $arrCategoryGroup = RefCategoryGroupRead::getCategoryGroupInArray();
     //Get Category
     $arrCategory = RefCategoryRead::getCategoryInArray();
     //Get Avaiable Country
     $arrCountry = RefCountryRead::getCountryInArray();
     //Get Avaiable State
     $arrState = RefStateRead::getStateInArray();
     //Get Avaiable Location
     $arrLocation = RefLocationRead::getLocationInArray();
     return view('places.add_places', compact('arrCategoryGroup', 'arrCategory', 'arrCountry', 'arrState', 'arrLocation'));
 }