e7bbd6cccb
* Use queues for notifications #1154 * Styles * Update defaults * Include queueworker
53 lines
1.1 KiB
PHP
53 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Notifications\Messages;
|
|
|
|
use App\Contracts\Notification;
|
|
use App\Models\Pirep;
|
|
use App\Notifications\Channels\MailChannel;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
class PirepSubmitted extends Notification implements ShouldQueue
|
|
{
|
|
use Queueable;
|
|
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(
|
|
'New PIREP Submitted',
|
|
'notifications.mail.admin.pirep.submitted',
|
|
['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,
|
|
];
|
|
}
|
|
}
|