Database.php 1009 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. namespace addons\shopro\library\notify\channel;
  3. use addons\shopro\notifications\Notification;
  4. use addons\shopro\model\Notification as NotificationModel;
  5. class Database
  6. {
  7. public function __construct()
  8. {
  9. }
  10. /**
  11. * 发送 模板消息
  12. *
  13. * @param mixed $notifiable // 通知用户
  14. * @param 通知内容
  15. * @return void
  16. */
  17. public function send($notifiable, Notification $notification)
  18. {
  19. $data = [];
  20. if (method_exists($notification, 'toDatabase')) {
  21. $data = $notification->toDatabase($notifiable);
  22. $notificationModel = new NotificationModel();
  23. $notificationModel->type = $notification->event;
  24. $notificationModel->notifiable_id = $notifiable['id'];
  25. $notificationModel->notifiable_type = $notification->notifiableType;
  26. $notificationModel->data = json_encode($data);
  27. $notificationModel->save();
  28. }
  29. return true;
  30. }
  31. }