LaravelPackages.net
Acme Inc.
Toggle sidebar
nmirceac/sms-tools

SMS Tools for Laravel

105
0
0.0.6
About nmirceac/sms-tools

nmirceac/sms-tools is a Laravel package for sms tools for laravel. It currently has 0 GitHub stars and 105 downloads on Packagist (latest version 0.0.6). Install it with composer require nmirceac/sms-tools. Discover more Laravel packages by nmirceac or browse all Laravel packages to compare alternatives.

Last updated

smsTools

Sms Tools

Contents

  1. Intro
  2. Examples

1. Intro

How to install?

  • composer require nmirceac/sms-tools
  • php artisan vendor:publish
  • php artisan migrate
  • check config/sms.php (just in case)
  • add your API details to .env
  • php artisan smstools:setup
  • check the examples below
  • enjoy!

Samples

.env sample config

SMS_API_ENDPOINT="https://sms.weanswer.it/api/v1/sms" SMS_API_KEY="AAAAAAAAA" SMS_API_SECRET="ZZZZZZZZZZZZZZZZZZZ"

Examples

Sending a text message

\App\SmsMessage::queue('27794770189', 'Hello text world!');

Checking your actual SMS content (allowed 8bit chars only)

dd(\App\SmsMessage::cleanContent('Enter your desired content');

Star History Chart