/**
  * Get all employees by position to be listed on select tag
  *
  * @return Employee
  */
 public function listEmployeesByPosition()
 {
     return Employee::where('position', '=', 1)->orderBy('last_name')->get()->lists('first_last_name', 'username');
 }