/**
  * change relation model
  */
 protected function changeRelationModel()
 {
     $module = getModule(get_called_class());
     $module = explode('-', $module);
     $module = ucfirst_tr($module[1]);
     $this->relations['thumbnails']['relation_model'] = "\\App\\{$module}Thumbnail";
     $this->relations['extras']['relation_model'] = "\\App\\{$module}Extra";
 }
 /**
  * get the county uc first
  *
  * @return string
  */
 public function getCountyUcFirstAttribute()
 {
     return ucfirst_tr($this->county);
 }
 /**
  * get the province uc first
  *
  * @return string
  */
 public function getProvinceUcFirstAttribute()
 {
     return ucfirst_tr($this->province);
 }
 /**
  * get the neighborhood uc first
  *
  * @return string
  */
 public function getNeighborhoodUcFirstAttribute()
 {
     return ucfirst_tr($this->neighborhood);
 }
 /**
  * Get the first_name attribute.
  *
  * @return string
  */
 public function getFirstNameUcFirstAttribute()
 {
     return ucfirst_tr($this->first_name);
 }