PHP code example of orkhanahmadov / laravel-az-sms-sender

1. Go to this page and download the library: Download orkhanahmadov/laravel-az-sms-sender 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/ */

    

orkhanahmadov / laravel-az-sms-sender example snippets


Orkhanahmadov\LaravelAzSmsSender\LaravelAzSmsSenderServiceProvider::class,

'SmsSender' => Orkhanahmadov\LaravelAzSmsSender\Facade\SmsSender::class,

SmsSender::send($number, $message);

SmsSender::send([994502223344, 994505558866, ..., ...], "This is bulk message for all numbers");

SmsSender::send([
    994552223344 => "This is message for 994552223344",
    994507775533 => "This is message for 994507775533",
    ...
]);

php artisan migrate

php artisan vendor:publish