dmn/txtbox
最新稳定版本:v1.0.5
Composer 安装命令:
composer require dmn/txtbox
包简介
Txtbox package
README 文档
README
install
composer require dmn/pkg-txtbox
configuration
txtbox.php
<?php return [ 'base_uri' => env('TXTBOX_BASE_URI', 'https://ws-live.txtbox.com/'), 'api_key' => env('TXTBOX_API_KEY'), 'guzzle' => [], ];
service provider
Dmn\Txtbox\ServiceProvider::class
example
<?php namespace Dmn\Txtbox\Examples; use Dmn\Txtbox\Channels\Txtbox; use Dmn\Txtbox\Messages\TxtboxMessage; use Illuminate\Notifications\Notification; class SmsNotification extends Notification { /** * Get the notification channels. * * @param mixed $notifiable * @return array|string */ public function via($notifiable) { return [Txtbox::class]; } /** * Get Txtbox message * * @param mixed $notifiable * * @return TxtboxMessage */ public function toTxtbox($notifiable): TxtboxMessage { return (new TxtboxMessage()) ->setMobileNumber($notifiable['mobile_number']) ->setMessage('This is a sample sms from package channel txtbox'); } }
NOTE:
pwede gamitin rekta yung Dmn\Txtbox\Txtbox, inject lang.
统计信息
- 总下载量: 657
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: proprietary
- 更新时间: 2023-06-30