Plantilla de tu Invitación

Elegí el diseño que más te guste para tu evento

@if($templates->count() > 0)
@foreach($templates as $template) @php $isSelected = ($form['template_id'] ?? $invitation->template_id) == $template->id; // Obtener la primera imagen del template $firstImage = $template->images->first(); $imageUrl = $firstImage ? \Storage::url($firstImage->thumbnail_path ?? $firstImage->image_path) : ($template->img_preview ? \Storage::url($template->img_preview) : asset('img/placeholder-cover.jpg')); @endphp
@if($isSelected)
@endif
Plantilla {{ $template->name }}
{{ $template->name }}
@if($template->rating)
{{ number_format($template->rating, 1) }}
@endif
@endforeach
@else
No hay plantillas disponibles para este tipo de evento.
@endif