From 5853aa3f947575267de2e736bf694d646f4fc5fc Mon Sep 17 00:00:00 2001 From: James Brooks Date: Sat, 13 Dec 2014 12:32:01 +0000 Subject: [PATCH] Update status page icons to use FontAwesome --- app/models/Incident.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/models/Incident.php b/app/models/Incident.php index 5907bf5e..c9b2496a 100644 --- a/app/models/Incident.php +++ b/app/models/Incident.php @@ -42,10 +42,10 @@ class Incident extends Eloquent implements \Dingo\Api\Transformer\TransformableI */ public function getIconAttribute() { switch ($this->status) { - case 1: return 'glyphicon-flag'; - case 2: return 'glyphicon-warning-sign'; - case 3: return 'glyphicon-eye-open'; - case 4: return 'glyphicon-ok'; + case 1: return 'fa fa-flag'; + case 2: return 'fa fa-warning'; + case 3: return 'fa fa-eye'; + case 4: return 'fa fa-check'; } }