toonitw / laravel-sms-kor by toonitw

5
2
1
Package Data
Maintainer Username: toonitw
Maintainer Contact: toonitw@gmail.com (Jehong Ahn)
Package Create Date: 2014-12-09
Package Last Update: 2014-12-14
Language: PHP
License: Unknown
Last Refreshed: 2024-11-23 03:16:54
Package Statistics
Total Downloads: 5
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 2
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

Laravel sms bundle for korean

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

```php
Sms::send([
	'phone' => '01011112222', // recipient
	'message' => 'Hello.'
]);