jehong-ahn/laravel-sms-kor

此包最新版本(dev-master)没有可用的许可证信息。

dev-master 2014-12-14 15:35 UTC

This package is not auto-updated.

Last update: 2024-09-24 15:58:00 UTC


README

目前支持 cafe24。

安装

  • composer.json
  • 更新 composer
  • app/config/app.php
	'providers' => Array(
		...,
		'JehongAhn\LaravelSmsKor\LaravelSmsKorServiceProvider'
	);
	'aliases' => Array(
		...,
		'Sms' => 'JehongAhn\LaravelSmsKor\Sms',
	);
  • 发布包配置文件。
    php artisan config:publish jehong-ahn/laravel-sms-kor
  • 自定义包配置文件。 app/config/packages/jehong-ahn/laravel-sms-kor

如何使用

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