Guest User

Untitled

a guest
Dec 13th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?= $form->field($model, 'employee_id')->dropDownlist(
  2. ArrayHelper::map(Employee::find()->all(), 'id', 'employee_name'),
  3. [
  4. 'prompt' => 'Select Employee ID',
  5. 'style' => 'width:200px'
  6. ]); ?>
  7.  
  8. Employee::find([
  9. 'employee_status' => 'Available'
  10. ])->all();
Add Comment
Please, Sign In to add comment