*/ use HasFactory; protected $fillable = [ 'notifiable_type', 'notifiable_id', 'channel', 'type', 'recipient', 'status', 'error_message', 'metadata', ]; protected function casts(): array { return [ 'metadata' => 'array', ]; } public function notifiable(): MorphTo { return $this->morphTo(); } }