{{-- Caja de información reutilizable Uso: @include('emails.partials.info-box', ['title' => 'Información', 'content' => 'Contenido', 'type' => 'info']) Tipos: info, warning, success, error --}} @php $boxColors = [ 'info' => ['bg' => '#f8f9fa', 'border' => '#1f5ba8', 'text' => '#555555'], 'warning' => ['bg' => '#fff3cd', 'border' => '#ffc107', 'text' => '#856404'], 'success' => ['bg' => '#d1f2eb', 'border' => '#27ae60', 'text' => '#1e7e34'], 'error' => ['bg' => '#f8d7da', 'border' => '#dc3545', 'text' => '#721c24'], ]; $colors = $boxColors[$type ?? 'info']; @endphp
@if($title ?? false)

{{ $title }}

@endif

{{ $content ?? $slot }}