From ab4ed1f2b0b38bb4980bc724bda9e1dd43ea21a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Thu, 14 Jan 2021 14:22:01 +0100 Subject: [PATCH] add status converted --- app/Models/Quote.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Models/Quote.php b/app/Models/Quote.php index 8421a3e02c74..4fc097bd0e81 100644 --- a/app/Models/Quote.php +++ b/app/Models/Quote.php @@ -226,6 +226,8 @@ class Quote extends BaseModel case self::STATUS_EXPIRED: return '
'.ctrans('texts.expired').'
'; break; + case self::STATUS_CONVERTED: + return '
'.ctrans('texts.converted').'
'; default: // code... break;