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.
52 lines
1.0 KiB
52 lines
1.0 KiB
<?php
|
|
|
|
namespace App\Notifications;
|
|
|
|
use App\Channels\Messages\FcmMessage;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
class FcmNotification extends Notification
|
|
{
|
|
use Queueable;
|
|
|
|
public $message;
|
|
|
|
/**
|
|
* Create a new notification instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct($message)
|
|
{
|
|
$this->message = $message;
|
|
}
|
|
|
|
/**
|
|
* Get the notification's delivery channels.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @return array
|
|
*/
|
|
public function via($notifiable)
|
|
{
|
|
return ['fcm'];
|
|
}
|
|
|
|
/**
|
|
* Get the fcm representation of the notification.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @return FcmMessage
|
|
*/
|
|
public function toFcm($notifiable)
|
|
{
|
|
return (new FcmMessage())
|
|
->data([
|
|
'title' => $this->message['title'],
|
|
'body' => $this->message['body'],
|
|
'openURL' => "https://facebook.com/"
|
|
]);
|
|
}
|
|
|
|
}
|