weiwait / dcat-easy-sms
快捷配置短信通知
1.0.2
2021-10-25 09:42 UTC
Requires
- php: >=7.1.0
- dcat/laravel-admin: ~2.0
- overtrue/easy-sms: ~1.3.2
This package is auto-updated.
Last update: 2025-02-25 17:30:38 UTC
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());