Fixed change status in new inbox route

This commit is contained in:
Manish Verma
2018-08-14 17:12:08 +05:30
parent 9b3a1287b6
commit a6c6782468
4 changed files with 32 additions and 14 deletions

View File

@@ -190,7 +190,8 @@ class Finder
*/
public static function getCustomedStatus()
{
$status = Ticket_Status::select('id', 'name', 'icon_class')->get();
$status = Ticket_Status::select('id', 'name', 'icon_class')
->whereIn('id', [1,2,3,5])->get();
return $status;
}