skip to Main Content

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(),…

VIEW QUESTION

Laravel :"php artisan db:seed" doesn't work – SEO

I am try to run "ServiceTableSeeder" table in database i got an error msg. I try run "php artisan db:seed" Msg: [symfonycomponent|DebugExceptionFetalErrorException] cannot redeclare DatabaseSeeder::run() DatabaseSeeder .php <?php use IlluminateDatabaseSeeder; use IlluminateDatabaseEloquentModel; class DatabaseSeeder extends Seeder { /** * Run…

VIEW QUESTION
Back To Top
Search