/**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Motorista::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to return any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['cnh' => $this->cnh, 'telefone' => $this->telefone]);
     $query->andFilterWhere(['like', 'nome', $this->nome])->andFilterWhere(['like', 'categoria_cnh', $this->categoria_cnh])->andFilterWhere(['like', 'tipo', $this->tipo])->andFilterWhere(['like', 'status', $this->status]);
     return $dataProvider;
 }
?>

    <?php 
echo $form->field($model, 'id_posto')->dropDownList(ArrayHelper::map(PostoAbastecimento::find()->all(), 'id', 'nome'), ['prompt' => 'Selecione uma opção']);
?>

    <?php 
echo $form->field($model, 'id_veiculo')->dropDownList(ArrayHelper::map(Veiculo::find()->all(), 'renavam', 'placa_atual'), ['prompt' => 'Selecione uma opção']);
?>

    <?php 
echo $form->field($model, 'km')->textInput();
?>

    <?php 
echo $form->field($model, 'id_motorista')->dropDownList(ArrayHelper::map(Motorista::find()->all(), 'cnh', 'nome'), ['prompt' => 'Selecione uma opção']);
?>

    <?php 
echo $form->field($model, 'data_abastecimento')->widget(DatePicker::className(), ['inline' => false, 'language' => 'pt', 'clientOptions' => ['autoclose' => true, 'format' => 'dd-mm-yyyy']]);
?>
    <div class="form-group">
        <?php 
echo Html::submitButton($model->isNewRecord ? 'Novo' : 'Atualizar', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']);
?>
    </div>

    <?php 
ActiveForm::end();
?>