jehong-ahn/laravel-sms-kor

5 2
Install
composer require jehong-ahn/laravel-sms-kor
PHP:>=5.4.0
Last Updated:Dec 14, 2014
Links: GitHub  ·  Packagist
Maintainer: toonitw

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

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