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/ */
// 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;
}