Yii2 GridView table usage
The display of list data under Yii2 framework is usually realized by Gridview. Here are some common tips for future query
<?= GridView::widget([
'dataProvider' => $dataProvider,
'layout' => "{items}\n{summary}\n{pager}",
'tableOptions' => ['class' => 'table table-striped table-bordered table-hover'],
'columns' =& ...
Posted by Franko126 on Tue, 23 Nov 2021 07:11:02 +0100