PHP code example of opb / laravel-txtlocal

1. Go to this page and download the library: Download opb/laravel-txtlocal 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/ */

    

opb / laravel-txtlocal example snippets


"    "opb/laravel-txtlocal": "~1"
}

'Opb\LaravelTxtlocal\LaravelTxtlocalServiceProvider',

'LaravelTxtlocal' => 'Opb\LaravelTxtlocal\Facades\LaravelTxtlocal',

    // test route to demo SMS sending
    Route::get('send', function()
    {
        $result = LaravelTxtlocal::send(array('447712345678'), 'This is a test message', 'SenderName');
        return $result;
    }
    

    // test route to get the account balance
    Route::get('checkbalance', function()
    {
        $result = LaravelTxtlocal::balance();
        return $result;
    }
    
bash
$ php artisan config:publish opb/laravel-txtlocal