yiibaseView::{closure}(): Argument #2 ($model) must be of type Libro, appmodelsLibro given
in C:xampphtdocsbibliotecaviewslibroindex.php
JavaScript
x
'filterModel' => $searchModel,
'columns' => [
['class' => 'yiigridSerialColumn'],
'id',
'titulo',
'imagen',
[
'class' => ActionColumn::className(),
* 'urlCreator' => function ($action, Libro $model, $key, $index, $column) {*
return Url::toRoute([$action, 'id' => $model->id]);
}
],
],
]); ?>
Advertisement
Answer
Change your closure from:
JavaScript
'urlCreator' => function ($action, Libro $model, $key, $index, $column) {*
return Url::toRoute([$action, 'id' => $model->id]);
}
Into:
JavaScript
'urlCreator' => function ($action, appmodelsLibro $model, $key, $index, $column) {*
return Url::toRoute([$action, 'id' => $model->id]);
}
In other words, use right class as type (
appmodelsLibro
instead ofLibro
).