dialerblade
Showing
1 changed file
with
5 additions
and
0 deletions
| ... | @@ -170,6 +170,11 @@ use App\Models\CRMCall; | ... | @@ -170,6 +170,11 @@ use App\Models\CRMCall; |
| 170 | $number_list=array(); | 170 | $number_list=array(); |
| 171 | foreach($mc as $key=>$tcall) | 171 | foreach($mc as $key=>$tcall) |
| 172 | { | 172 | { |
| 173 | include( app_path() . '/Hacks/DisabledDIDs.php'); | ||
| 174 | if( in_array(substr($tcall->number,-10),$DisableNumbersArray) ){ | ||
| 175 | continue; | ||
| 176 | } | ||
| 177 | |||
| 173 | $tccal=substr($tcall->number,-10); | 178 | $tccal=substr($tcall->number,-10); |
| 174 | $mc_number=CRMCall::where('userstatus','!=','InboundDROP') | 179 | $mc_number=CRMCall::where('userstatus','!=','InboundDROP') |
| 175 | ->where('created_at','>',$tcall->created_at) | 180 | ->where('created_at','>',$tcall->created_at) | ... | ... |
-
Please register or sign in to post a comment