Files
cachet-docker/app/models/Component.php
2014-11-16 23:33:19 +00:00

13 lines
276 B
PHP

<?php
class Component extends Eloquent {
public function getHumanStatusAttribute() {
switch ($this->status) {
case 1: return 'Operational';
case 2: return 'Performance Issues';
case 3: return 'Partial Outage';
case 4: return 'Major Outage';
}
}
}