jehong-ahn / laravel-sms-kor
There is no license information available for the latest version (dev-master) of this package.
dev-master
2014-12-14 15:35 UTC
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*
This package is not auto-updated.
Last update: 2024-11-19 16:36:45 UTC
README
Currently available for cafe24.
INSTALL
- composer.json
- composer update
- app/config/app.php
'providers' => Array( ..., 'JehongAhn\LaravelSmsKor\LaravelSmsKorServiceProvider' ); 'aliases' => Array( ..., 'Sms' => 'JehongAhn\LaravelSmsKor\Sms', );
- Publish the package config files.
php artisan config:publish jehong-ahn/laravel-sms-kor
- Customize the package config files.
app/config/packages/jehong-ahn/laravel-sms-kor
HOW TO USE
Sms::send([ 'phone' => '01011112222', // recipient 'message' => 'Hello.' ]);