e99c22b007
* Emails not sending #795 #722 * Fix for news items not being sent; refactor some events; check for opt-in #722 * Formatting * Remove extra parameter
50 lines
966 B
PHP
50 lines
966 B
PHP
<?php
|
|
|
|
namespace App\Notifications\Messages;
|
|
|
|
use App\Contracts\Notification;
|
|
use App\Models\Pirep;
|
|
use App\Notifications\Channels\MailChannel;
|
|
|
|
class PirepRejected extends Notification
|
|
{
|
|
use MailChannel;
|
|
|
|
public $channels = ['mail'];
|
|
|
|
private $pirep;
|
|
|
|
/**
|
|
* Create a new notification instance.
|
|
*
|
|
* @param \App\Models\Pirep $pirep
|
|
*/
|
|
public function __construct(Pirep $pirep)
|
|
{
|
|
parent::__construct();
|
|
|
|
$this->pirep = $pirep;
|
|
|
|
$this->setMailable(
|
|
'PIREP Rejected!',
|
|
'notifications.mail.pirep.rejected',
|
|
['pirep' => $this->pirep]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get the array representation of the notification.
|
|
*
|
|
* @param mixed $notifiable
|
|
*
|
|
* @return array
|
|
*/
|
|
public function toArray($notifiable)
|
|
{
|
|
return [
|
|
'pirep_id' => $this->pirep->id,
|
|
'user_id' => $this->pirep->user_id,
|
|
];
|
|
}
|
|
}
|