24 lines
585 B
PHP
24 lines
585 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Notifications;
|
||
|
|
||
|
use App\EmailLog;
|
||
|
use Illuminate\Notifications\Notification;
|
||
|
|
||
|
class SentEmailDatabaseChannel extends EmailDatabaseWriterChannelBase
|
||
|
{
|
||
|
/**
|
||
|
* Send the given notification.
|
||
|
*
|
||
|
* @param mixed $notifiable
|
||
|
* @param \Illuminate\Notifications\Notification $notification
|
||
|
* @return void
|
||
|
*/
|
||
|
public function send($notifiable, Notification $notification)
|
||
|
{
|
||
|
/** @var EmailLog $logEntry */
|
||
|
$logEntry = $notification->toDatabaseWriter($notifiable);
|
||
|
|
||
|
$this->writeToTable($logEntry, false);
|
||
|
}
|
||
|
}
|