Skip to content

Instantly share code, notes, and snippets.

@madi-madi
Last active December 24, 2020 14:22
Show Gist options
  • Save madi-madi/e1fb1ae6a6fe1907e1be7ec8827257d0 to your computer and use it in GitHub Desktop.
Save madi-madi/e1fb1ae6a6fe1907e1be7ec8827257d0 to your computer and use it in GitHub Desktop.
PushNotification
<?php
namespace App\Notifications;
use App\Post;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
class PushNotification extends Notification implements ShouldQueue
{
use Queueable;
/**
* Create a new notification instance.
*
* @return void
*/
protected $post;
public function __construct(Post $post)
{
$this->post = $post;
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return ['database'];
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toDatabase()
{
$data = [
'message'=> 'New Posts added : '.$this->post->title,
];
return $data;
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
public function toArray($notifiable)
{
return [
//
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment