Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Created May 29, 2018 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uno-de-piera/79fc1d96a2eab1dc980e64635d7ec8af to your computer and use it in GitHub Desktop.
Save uno-de-piera/79fc1d96a2eab1dc980e64635d7ec8af 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;
class NewNotification extends Notification
{
use Queueable;
/**
* @var string
*/
protected $token;
/**
* Create a new notification instance.
*
* @param string $token
*/
public function __construct(string $token)
{
$this->token = $token;
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return ['mail'];
}
/**
* 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('/' . $this->token))
->line('Thank you for using our application!');
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
public function toArray($notifiable)
{
return [
//
];
}
}
<?php
Route::get('notify', function () {
$user = \App\User::find(2);
$token = md5(microtime());
$user->notify(new \App\Notifications\NewNotification($token));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment