foxlaby/smslaby-laravel-client

You can send sms through a our server using your sender id encryption key.

Installs: 15

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

pkg:composer/foxlaby/smslaby-laravel-client

v1.1.1 2020-09-26 11:23 UTC

This package is auto-updated.

Last update: 2025-09-26 22:37:27 UTC


README

You can send sms through a our server using your sender id by encryption key.

Install via composer

$ composer require foxlaby/smslaby-laravel-client

Use

$sms = smslaby()
    ->lang('ar')
    ->to('01×××××××××')
    // ->sandbox(true)
    ->message('body');

Hash Key:-

Add a value you choose but you must add this value in a .env file

SMSLABY_HASH_KEY=<hash_key>

Methods:-

  • lang: Add lang alpha-2 (ar|en).
  • to: Add the recipient number.
  • sandbox: For trial only, in this case the message will not be sent to the recipient but to our dashboard.
  • message: Message content.