/**
  * Return total number of active employees (except system admin)
  *
  * @return int 
  */
 public function activeTotal()
 {
     return Employee::all()->count();
 }