/**
  * /admin/business/location/ [GET]
  */
 public function location($parameters)
 {
     if ($parameters) {
         $this->loadView('404');
     }
     $business = new BusinessModel($this->db, $this->business_id);
     $this->data = $business->getLocation();
     $this->helper['states'] = Helper::getStates();
     $this->loadView('business/location');
 }