PHP code example of codecamplao / telbiz
1. Go to this page and download the library: Download codecamplao/telbiz library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
codecamplao / telbiz example snippets
'providers' => [
// ...
CodeCampLAO\TelBiz\TelBizServiceProvider::class,
]
protected $telbiz_sms;
public function __construct()
{
$this->telbiz_sms = new TelBizSMS();
}
public function index(): Response
{
return $this->telbiz_sms->sendSmsService(TitleEnum::Default, '20xxxxxxxx', 'Hello Telbiz');
}