return $this->render('view', compact('session', 'order'));
и
return $this->render('view', [
'model' => $this->findModel(),
]);
$order->name = 'Вася';
public function actionUpdate($id)
{
$model = $this->findModel($id);
if ($model->load(Yii::$app->request->post()) && $model->save()) {
return $this->redirect(['view', 'id' => $model->id]);
} else {
return $this->render('update', [
'model' => $model,
]);
}
}
такие есть только