Dcat Admin Extension
演示地址
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());