SendMiniChannel.php 406 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: mead
  5. * Date: 2018/7/13
  6. * Time: 下午4:05
  7. */
  8. namespace App\Channels;
  9. use App\Models\User;
  10. use Illuminate\Notifications\Notification;
  11. class SendMiniChannel
  12. {
  13. public function send($notifiable, Notification $notification)
  14. {
  15. if (!method_exists($notification, 'toSendMini')) return false;
  16. $notification->toSendMini($notifiable);
  17. }
  18. }