Please note that WhatsApp messages are currently not supported.
Install the package
composer require pro-sales/laravel-websms
Publish the config file
php artisan vendor:publish --provider="ProSales\WebSms\WebSmsServiceProvider"
Don't forget to update the access token in the config!
Send your first message:
WebSms::smsMessage()
->to("+41791234567")
->text("Hallo von Laravel")
->send();