I have the next trouble,
The gridview module MUST be setup in your Yii configuration file and must be an instance of kartik\grid\Module.
I don't know how to configure my config file. In my config file, I have this:
'modules' => [
'gridview' => ['class' => 'kartik\grid\Module']
],
but this not found
The solution is agregated the line modules over the same herarchy like this:
'components' => [
],
'modules' => [
'gridview' => ['class' => 'kartik\grid\Module']
]
Try this in your config file:
'modules' => [
'gridview' => [
'class' => '\kartik\grid\Module',
],
],