Twillio call disconnect after the user recieves one ring
I want to immediately terminate a call as soon as the call is initialized an the user gets one ring this are my routes Route::any('missedCall','RegistrationController@missedCall'); Route::any('callForMissedCall',function(){ $xml = new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8"? ><Response/>'); $xml->addChild('Dial timeout="0"'); $header['Content-Type'] = 'application/xml'; return Response::make($xml->asXML(),…