base commit
This commit is contained in:
56
app/Notifications/DisciplinaryReportCreatedNotification.php
Normal file
56
app/Notifications/DisciplinaryReportCreatedNotification.php
Normal file
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Notifications;
|
||||
|
||||
use App\Models\DisciplinaryReport;
|
||||
use Illuminate\Bus\Queueable;
|
||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
use Illuminate\Notifications\Messages\MailMessage;
|
||||
use Illuminate\Notifications\Notification;
|
||||
|
||||
class DisciplinaryReportCreatedNotification extends Notification implements ShouldQueue
|
||||
{
|
||||
use Queueable;
|
||||
|
||||
public function __construct(
|
||||
public readonly DisciplinaryReport $report,
|
||||
) {}
|
||||
|
||||
/**
|
||||
* @return list<string>
|
||||
*/
|
||||
public function via(object $notifiable): array
|
||||
{
|
||||
return ['database', 'mail'];
|
||||
}
|
||||
|
||||
public function toMail(object $notifiable): MailMessage
|
||||
{
|
||||
$employee = $this->report->employee;
|
||||
|
||||
return (new MailMessage)
|
||||
->subject('New Disciplinary Report Created')
|
||||
->line("A new disciplinary report has been created for {$employee->full_name}.")
|
||||
->line("Title: {$this->report->title}")
|
||||
->line("Severity: {$this->report->severity->label()}")
|
||||
->line("Date: {$this->report->report_date->toDateString()}");
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function toArray(object $notifiable): array
|
||||
{
|
||||
return [
|
||||
'report_id' => $this->report->id,
|
||||
'employee_id' => $this->report->employee_id,
|
||||
'employee_name' => $this->report->employee->full_name,
|
||||
'title' => $this->report->title,
|
||||
'severity' => $this->report->severity->value,
|
||||
'report_date' => $this->report->report_date->toDateString(),
|
||||
'created_by' => $this->report->created_by,
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user