How to make a clear url when get request using ActiveForm

Now the url looks like this: / work / dashboard? DashboardFilter% 5Bspeciality% 5D = & DashboardFilter% 5BforYou% 5D = 0 & DashboardFilter% 5BonlySafe% 5D = 0 & DashboardFilter% 5BonlySafe% 5D = 1

How to do what would be like this: / work / dashboard? ForYou = 0 & onlySafe = 1

    1 answer 1

    Specify the field name when generating

    <?= $form->field($model, 'forYou')->checkbox(['name' => 'forYou']) ?> <?= $form->field($model, 'onlySafe')->checkbox(['name' => 'onlySafe']) ?> 

    And in the search model when loading data in specify the name of the form ''

     $this->load($params, '');