@extends('layouts.admin_sidebar') @section('title', 'Plantillas de Confirmación') @section('content')

Plantillas de Confirmación de Registro

Nueva Plantilla
@if(session('success')) @endif @if($plantillas->count())
@foreach($plantillas as $plantilla) @endforeach
Nombre Congreso Asunto del Email Acciones
{{ $plantilla->nombre_plantilla }} {{ $plantilla->congreso->nombre ?? 'N/A' }} {{ Str::limit($plantilla->asunto_email, 50) }}
@csrf @method('DELETE')
{{ $plantillas->links('pagination::bootstrap-5') }}
@else

No hay plantillas de confirmación. Crear una nueva

@endif
@endsection