コード例 #1
0
ファイル: Orders.php プロジェクト: kd-brinex/kd
 public function getOrder()
 {
     return $this->hasOne(OrderSearch::className(), ['id' => 'order_id']);
 }
コード例 #2
0
ファイル: OrdersController.php プロジェクト: kd-brinex/kd
 protected function findModel($id)
 {
     if (($model = OrderSearch::findOne($id)) !== null) {
         return $model;
     } else {
         throw new Exception('This not found');
     }
 }