* Add test call to test notification #675 * Fix queue driver with emails not sending; formatting #675
41 lines
789 B
PHP
41 lines
789 B
PHP
<?php
|
|
|
|
namespace App\Notifications\Messages;
|
|
|
|
use App\Models\User;
|
|
use App\Notifications\BaseNotification;
|
|
use App\Notifications\Channels\MailChannel;
|
|
|
|
class AdminUserRegistered extends BaseNotification
|
|
{
|
|
use MailChannel;
|
|
|
|
public $channels = ['mail'];
|
|
|
|
private $user;
|
|
|
|
/**
|
|
* Create a new notification instance.
|
|
*
|
|
* @param \App\Models\User $user
|
|
*/
|
|
public function __construct(User $user)
|
|
{
|
|
parent::__construct();
|
|
|
|
$this->user = $user;
|
|
$this->setMailable(
|
|
'A new user registered',
|
|
'notifications.mail.admin.user.registered',
|
|
['user' => $user]
|
|
);
|
|
}
|
|
|
|
public function toArray($notifiable)
|
|
{
|
|
return [
|
|
'user_id' => $this->user->id,
|
|
];
|
|
}
|
|
}
|