ea3ab21beb
* Refactor notifications to allow easier plugins * Notification refactoring * Formatting * Move news to NewsService; cleanup of events * More refactoring; added send email out for news item and the template * Formatting * Formatting
45 lines
849 B
PHP
45 lines
849 B
PHP
<?php
|
|
|
|
namespace App\Notifications\Messages;
|
|
|
|
use App\Models\User;
|
|
use App\Notifications\BaseNotification;
|
|
use App\Notifications\Channels\MailChannel;
|
|
|
|
class UserRejected extends BaseNotification
|
|
{
|
|
use MailChannel;
|
|
|
|
private $user;
|
|
|
|
/**
|
|
* @param \App\Models\User $user
|
|
*/
|
|
public function __construct(User $user)
|
|
{
|
|
parent::__construct();
|
|
|
|
$this->user = $user;
|
|
|
|
$this->setMailable(
|
|
'Your registration has been denied',
|
|
'notifications.mail.user.rejected',
|
|
['user' => $this->user]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get the array representation of the notification.
|
|
*
|
|
* @param mixed $notifiable
|
|
*
|
|
* @return array
|
|
*/
|
|
public function toArray($notifiable)
|
|
{
|
|
return [
|
|
'user_id' => $this->user->id,
|
|
];
|
|
}
|
|
}
|