weiwait/dcat-easy-sms
Composer 安装命令:
composer require weiwait/dcat-easy-sms
包简介
快捷配置短信通知
关键字:
README 文档
README
演示地址
demo: http://dcat.weiwait.cn (admin:admin)
依赖扩展
通过 composer 安装扩展
composer require weiwait/dcat-easy
通过选项卡使用
public function index(Content $content): Content { $tab = Tab::make(); $tab->add('短信', new \Weiwait\DcatEasySms\Forms\SmsConfig()); return $content->title('配置') ->body($tab->withCard()); }
通知
class SomeNotification extends Notification { public function via() { return [\Weiwait\DcatEasySms\Channels\EasySmsChannel::class]; } public function toEasySms($notifiable) { return [ 'to' => $notifiable, 'template' => 'SMS_000001', 'content' => '免模板消息内容', 'data' => [ 'code' => '模板消息变量${code}' ] ] } }
可通知模型
class User extends Model { use Notifiable; public function routeNotificationForEasySms($notifiable) { return $this->phone; } } class SomeNotification extends Notification { public function via() { return [\Weiwait\DcatEasySms\Channels\EasySmsChannel::class]; } public function toEasySms($notifiable) { return [ 'template' => 'SMS_000001', 'data' => [ 'code' => '模板消息变量${code}' ] ] } }
发送通知
Notification::send('15626326950', new SomeNotification()); (new User())->nofity(new SomeNotification());
示例图片
Donate
Dcat-admin 扩展列表
统计信息
- 总下载量: 122
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 12
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-09-07


