rhincodon/laravel-letsads
最新稳定版本:1.1.5
Composer 安装命令:
composer require rhincodon/laravel-letsads
包简介
Laravel LetsAds SMS Service Provider
README 文档
README
Laravel 5.x package for LetsAds SMS provider.
Install
You can install the package via composer:
$ composer require rhincodon/laravel-letsads
This service provider must be installed. And facade:
// config/app.php 'providers' => [ ... Rhinodontypicus\LetsAds\LetsAdsServiceProvider::class, ]; 'aliases' => [ 'LetsAds' => Rhinodontypicus\LetsAds\LetsAdsFacade::class, ];
You can publish the migration with:
php artisan vendor:publish --provider="Rhinodontypicus\LetsAds\LetsAdsServiceProvider"
Usage
In all cases will be returned SimpleXML object with appropriate information about action or ErrorException:
use LetsAds; // Get balance LetsAds::balance(); // Send messages // $phones may be string or array LetsAds::send($message, $from, $phones); // Get messages statuses LetsAds::status($messageId);
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 47
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-09-14