feat(notification): email event date changes

This commit is contained in:
2026-09-14 08:53:51 -03:00
parent 205d77bc0b
commit 756f4dad0a
10 changed files with 601 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<?php
namespace App\Domains\Notification\Models;
use Illuminate\Database\Eloquent\Attributes\Fillable;
use Illuminate\Database\Eloquent\Model;
#[Fillable([
'notification_key',
'notification_type',
'tenant_code',
'event_date_id',
'destination_event_date_id',
'purchase_id',
'sent_at',
])]
class EventDateNotificationDelivery extends Model
{
protected function casts(): array
{
return [
'event_date_id' => 'integer',
'destination_event_date_id' => 'integer',
'purchase_id' => 'integer',
'sent_at' => 'datetime',
];
}
}