PHP code example of pro-sales / laravel-websms
1. Go to this page and download the library: Download pro-sales/laravel-websms 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/ */
pro-sales / laravel-websms example snippets
php artisan vendor:publish --provider="ProSales\WebSms\WebSmsServiceProvider"
php
WebSms::smsMessage()
->to("+41791234567")
->text("Hallo von Laravel")
->send();