alaaelsaid/laravel-sms-helper

1.2.3 2024-09-22 19:52 UTC

This package is auto-updated.

Last update: 2024-09-22 19:53:10 UTC


README

安装

您可以通过 Composer 安装此包。

composer require alaaelsaid/laravel-sms-helper

发布

安装后发布配置文件

php artisan vendor:publish --tag="sms"

环境变量

在 .env 文件中,您可以添加以下密钥

SMS_PROVIDER=four_jawaly
SMS_PROVIDER_STATUS=false

可用的短信服务提供商

Malath - Hisms - Four Jawaly - Unifonic - Yamamah

使用方法

use Alaaelsaid\LaravelSmsHelper\Facade\Sms;

// to send single phone number;
Sms::send('+201007153686', "hello world");

// to send single phone number;
Sms::send(['+201007153686'], "hello world");