123456789101112131415161718192021 |
- <?php
- /**
- * Created by PhpStorm.
- * User: mead
- * Date: 2018/7/13
- * Time: 下午4:05
- */
- namespace App\Channels;
- use Illuminate\Notifications\Notification;
- class SendSMSChannel
- {
- public function send($notifiable, Notification $notification)
- {
- if (!method_exists($notification, 'toSendSMS')) return false;
- $notification->toSendSMS($notifiable);
- }
- }
|