Esempio n. 1
0
 /**
  * get district by id
  *
  * @param $id
  * @return bool|\Illuminate\Support\Collection|null|static
  */
 public function getDistrictById($id)
 {
     return $this->_districtModel->getById($id) ? $this->_cityModel->getById($id) : false;
 }