Files
construprogress/app/Notifications/InspectionUpdatedNotification.php
T

34 lines
980 B
PHP
Raw Normal View History

<?php
namespace App\Notifications;
2026-08-28 13:04:28 +02:00
use App\Models\Inspection;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
class InspectionUpdatedNotification extends Notification
{
use Queueable;
public function __construct(public Inspection $inspection, public array $changes = []) {}
public function via($notifiable): array
{
return ['database'];
}
public function toArray($notifiable): array
{
return [
2026-08-28 13:04:28 +02:00
'type' => 'inspection_updated',
'inspection_id' => $this->inspection->id,
2026-08-28 13:04:28 +02:00
'project_id' => $this->inspection->project_id,
'feature_name' => $this->inspection->feature?->name ?? '—',
'template_name' => $this->inspection->template?->name ?? '—',
2026-08-28 13:04:28 +02:00
'result' => $this->inspection->result,
'changes' => $this->changes,
'message' => "Inspección actualizada en '{$this->inspection->feature?->name}'",
];
}
2026-08-28 13:04:28 +02:00
}