Laravel-SMS
Laravel SMS Service Provider
Installation
Run the following command in your laravel directory:
composer require pezhvak/laravel-sms
Setup
- In
/config/app.php
, add the following toproviders
:
Pezhvak\SMS\SmsServiceProvider::class,
and the following to aliases
:
'SMS' => Pezhvak\SMS\Facades\SMS::class,
- Run
php artisan vendor:publish
. - Enter your api data in
/config/SMS.php
.