运行代码时:
return $this->render('update', [
'model' => $model,
'stok' => $stok
]);
我收到与未定义变量相关的错误:
PHP 通知 'yii\base\ErrorException' 和消息 'Undefined variable: stok'
我的表格如下:
<div class="col-sm-2">
<?= $form->field($stok, 'harga_jual1')->textInput(['id' => 'hargaRetail'])->label('Harga Retail') ?>
</div>
如何解决此错误?