Skip to content

Instantly share code, notes, and snippets.

@pradeeprjth
Created June 18, 2020 12:19
Show Gist options
  • Save pradeeprjth/0dbf8d8ff8f6a044fb89cf6ba4244903 to your computer and use it in GitHub Desktop.
Save pradeeprjth/0dbf8d8ff8f6a044fb89cf6ba4244903 to your computer and use it in GitHub Desktop.
<?php
namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Messages\SlackMessage;
class TestNotification extends Notification
{
use Queueable;
/**
* Create a new notification instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return ['mail', 'slack'];
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail($notifiable)
{
return (new MailMessage)
->line('The introduction to the notification.')
->action('Notification Action', url('/'))
->line('Thank you for using our application!');
}
public function toSlack($notifiable)
{
$message = "Famous Hello World!";
return (new SlackMessage)
->from('Pradeep', ':pradeep:')
->to('#channel-name')
->content('Fix service request by '.$message);
}
/**
* 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