{{-- Componente de botón reutilizable para emails Uso: @include('emails.partials.button', ['url' => $url, 'label' => 'Verificar', 'color' => 'orange']) Colores disponibles: orange, blue, green --}} @php $buttonColors = [ 'orange' => ['bg' => 'linear-gradient(135deg, #ea580c 0%, #d97706 100%)', 'shadow' => 'rgba(234, 88, 12, 0.3)'], 'blue' => ['bg' => 'linear-gradient(135deg, #1f5ba8 0%, #3b82f6 100%)', 'shadow' => 'rgba(31, 91, 168, 0.3)'], 'green' => ['bg' => 'linear-gradient(135deg, #27ae60 0%, #2ecc71 100%)', 'shadow' => 'rgba(39, 174, 96, 0.3)'], ]; $colors = $buttonColors[$color ?? 'orange']; @endphp
| {{ $label }} |