Skip to content

weiwait/dcat-easy-sms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dcat Admin Extension

演示地址

demo: http://dcat.weiwait.cn (admin:admin)

依赖扩展

  1. overtrue/easy-sms

通过 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 扩展列表

  1. 单图裁剪
  2. 区划级联+坐标拾取
  3. smtp快速便捷配置
  4. sms channel 快速便捷配置