You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
492 B
23 lines
492 B
<?php
|
|
|
|
|
|
namespace App\Channels;
|
|
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
class FcmChannel
|
|
{
|
|
/**
|
|
* Send the given notification.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @param \Illuminate\Notifications\Notification $notification
|
|
* @return void
|
|
*/
|
|
public function send($notifiable, Notification $notification)
|
|
{
|
|
$message = $notification->toFcm($notifiable);
|
|
|
|
$recipients = $notifiable->routeNotificationFor('fcm', $notification);
|
|
}
|
|
}
|