SendcloudChannel.php 321 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Wang
  5. * Date: 2017/2/17
  6. * Time: 21:39
  7. */
  8. namespace App\Channels;
  9. use Illuminate\Notifications\Notification;
  10. class SendcloudChannel
  11. {
  12. public function send($notifiable, Notification $notification)
  13. {
  14. $message = $notification->toSendcloud($notifiable);
  15. }
  16. }