StatementController.php
931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
namespace frontend\controllers;
use common\models\RoadPassport;
use yii\data\ActiveDataProvider;
use yii\web\Controller;
class StatementController extends Controller
{
/**
* @inheritdoc
*/
public function actions()
{
return [
'error' => [
'class' => 'yii\web\ErrorAction',
],
];
}
/**
* @return mixed
*/
public function actionIndex()
{
$passports_query = RoadPassport::find()->with('road')->with('road.roadType');
$dataProvider = new ActiveDataProvider([
'query' => $passports_query,
'pagination' => [
'pageSize' => 20,
],
]);
return $this->render('index', ['dataProvider' => $dataProvider]);
}
}