@extends('layouts.app') @section('title', 'Plantillas de Correo') @section('content')
Gestiona las plantillas de correo electrónico del sistema
| ID | Nombre | Asunto | Categoría | Estado | Creado | Acciones |
|---|---|---|---|---|---|---|
| {{ $plantilla->id }} | {{ $plantilla->nombre }} | {{ Str::limit($plantilla->asunto ?? 'Sin asunto', 50) }} | {{ ucfirst($plantilla->categoria ?? 'N/A') }} | @if(isset($plantilla->activa) && $plantilla->activa) Activa @else Inactiva @endif | {{ $plantilla->created_at ? $plantilla->created_at->format('d/m/Y H:i') : 'N/A' }} | |
|
No se encontraron plantillas de correo. Crear Primera Plantilla |
||||||