feature/refund #7

Merged
ncoronel merged 63 commits from feature/refund into homo 2026-09-17 15:19:27 +00:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 04e54fefad - Show all commits

View File

@ -398,7 +398,7 @@ class NotificationMailService
->forTenant($tenantCode)
->send(
$recipient,
"Una fecha de tu evento fue suspendida - Compra #{$purchase->getKey()}",
"Una fecha de tu evento fue suspendida - N° de Orden #{$purchase->getKey()}",
view('mail.notifications.event-date-suspended', compact(
'purchase', 'date', 'disabledTickets', 'activeTickets'
))->render(),

View File

@ -5,7 +5,7 @@
<p>Los siguientes tickets quedaron inhabilitados porque no tienen otra fecha disponible:</p>
<ul>
@foreach ($disabledTickets as $ticket)
<li>{{ $ticket->name }} · #{{ $ticket->id }}</li>
<li>{{ $ticket->name }} · N° de Ticket #{{ $ticket->id }}</li>
@endforeach
</ul>
<p>Para conocer las alternativas o condiciones de devolución, comunicate con la organización.</p>
@ -15,9 +15,9 @@
<p>Estos tickets conservan otras fechas disponibles:</p>
<ul>
@foreach ($activeTickets as $ticket)
<li>{{ $ticket->name }} · #{{ $ticket->id }}</li>
<li>{{ $ticket->name }} · N° de Ticket #{{ $ticket->id }}</li>
@endforeach
</ul>
@endif
<p style="color: #64748b; font-size: 13px;">Compra #{{ $purchase->id }}</p>
<p style="color: #64748b; font-size: 13px;">N° de Orden #{{ $purchase->id }}</p>