Download the PHP package mucts/laravel-sms without Composer
On this page you can find all versions of the php package mucts/laravel-sms. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package laravel-sms
Laravel SMS
SMS for Laravel 7,based on mucts/sms
Install
composer require mucts/laravel-sms
Usage
-
Created Notification
- Create user model
- Send SMS
<?php // user Notifiable Trait $user->notify(new VerificationCode()); // use Notification Facade Notification::send($user, new VerificationCode()); // Send notifications to unregistered users or users with unbound mobile numbers. Notification::route( SMSChannel::class, new Mobile(13333333333, 86) )->notify(new VerificationCode());
Facade
<?php
use SMS;
SMS::send('13333333333','短信')
License
MIT
All versions of laravel-sms with dependencies
PHP Build Version
Package Version
The package mucts/laravel-sms contains the following files
Loading the files please wait ....