@php
$LineOfBusiness=[];
if($_SERVER['HTTP_HOST']=="tbo.bpm360.net" || $_SERVER['HTTP_HOST']=="tbot.bpm360.net")
{
$Results=DB::table('DropDownLists')->where('DropDownNameId','67')->where('DropDownListStatus','1')->where('DeletedStatus',0)->orderby('SortOrder','ASC')->get(['DropDownListId','DropDownListName']);
foreach($Results as $Result)
{
$LineOfBusiness[$Result->DropDownListId]=$Result->DropDownListName;
}
}
@endphp