コード例 #1
0
ファイル: addressService.php プロジェクト: kacana/kacana.com
 /**
  * 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;
 }