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