Remove the remaining use of the lang facade

This commit is contained in:
Graham Campbell
2015-01-01 22:03:33 +00:00
parent b2edda5ee2
commit 056e0c489e
5 changed files with 8 additions and 10 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ class Incident extends Model implements TransformableInterface
*/
public function getHumanStatusAttribute()
{
$statuses = Lang::get('cachet.incident.status');
$statuses = trans('cachet.incident.status');
return $statuses[$this->status];
}