Commit 5fb852dbda0977ee48f507af7460a83ca8eef82a
1 parent
db7021d8
nova poshta admin
Showing
1 changed file
with
4 additions
and
4 deletions
Show diff stats
controllers/OrderController.php
| ... | ... | @@ -78,7 +78,7 @@ |
| 78 | 78 | ->column(); |
| 79 | 79 | |
| 80 | 80 | return $this->render( |
| 81 | - '@artbox/order/views/order/index', | |
| 81 | + 'index', | |
| 82 | 82 | [ |
| 83 | 83 | 'searchModel' => $searchModel, |
| 84 | 84 | 'dataProvider' => $dataProvider, |
| ... | ... | @@ -97,7 +97,7 @@ |
| 97 | 97 | public function actionView($id) |
| 98 | 98 | { |
| 99 | 99 | return $this->render( |
| 100 | - '@artbox/order/views/order/view', | |
| 100 | + 'view', | |
| 101 | 101 | [ |
| 102 | 102 | 'model' => $this->findModel($id), |
| 103 | 103 | ] |
| ... | ... | @@ -189,7 +189,7 @@ |
| 189 | 189 | ->indexBy('id') |
| 190 | 190 | ->column(); |
| 191 | 191 | return $this->render( |
| 192 | - '@artbox/order/views/order/create', | |
| 192 | + 'create', | |
| 193 | 193 | [ |
| 194 | 194 | 'model' => $model, |
| 195 | 195 | 'labels' => $labels, |
| ... | ... | @@ -268,7 +268,7 @@ |
| 268 | 268 | ->indexBy('id') |
| 269 | 269 | ->column(); |
| 270 | 270 | return $this->render( |
| 271 | - '@artbox/order/views/order/update', | |
| 271 | + 'update', | |
| 272 | 272 | [ |
| 273 | 273 | 'model' => $model, |
| 274 | 274 | 'labels' => $labels, | ... | ... |