@extends('layouts.app') @section('title', 'Plantillas de Correo') @section('content')

Plantillas de Correo

Todas @foreach(['bienvenida', 'notificacion', 'recordatorio', 'promocion', 'sistema'] as $categoria) {{ ucfirst($categoria) }} @endforeach
@if($plantillas->count() > 0)
@foreach($plantillas as $plantilla) @endforeach
Nombre Asunto Categoría Variables Estado Creado Acciones
{{ $plantilla->nombre }} @if($plantilla->descripcion)
{{ $plantilla->descripcion }} @endif
{{ $plantilla->asunto }} {{ $plantilla->categoria_formateada }} @if($plantilla->variables && count($plantilla->variables) > 0) @foreach($plantilla->variables as $variable) {{ $variable }} @endforeach @else Ninguna @endif {{ $plantilla->estado_formateado }} {{ $plantilla->created_at->format('d/m/Y') }}
@csrf @method('DELETE')
@else
No hay plantillas de correo

Crea tu primera plantilla para comenzar

Crear Plantilla
@endif
@push('scripts') @endpush @endsection