8 lines
372 B
PHP
8 lines
372 B
PHP
<h1 style="margin: 0 0 20px;">Tus tickets ya están disponibles</h1>
|
|
<p>Generamos {{ $tickets->count() }} {{ $tickets->count() === 1 ? 'ticket' : 'tickets' }} para la compra <strong>#{{ $purchase->id }}</strong>.</p>
|
|
<ul style="padding-left: 20px;">
|
|
@foreach ($tickets as $ticket)
|
|
<li style="margin-bottom: 8px;">{{ $ticket->name }}</li>
|
|
@endforeach
|
|
</ul>
|