{{-- Section Organism - Luxury Edition (Atomic Composable v2.0) Content grouping with warm backgrounds and generous padding Note: All design tokens auto-injected via View Composer Uses centralized section backgrounds from config/emails.php Usage: @component('emails.organisms.section', [ 'background' => 'neutral' // neutral|ash|white|transparent|primary|custom hex ])

Section Content

Your content here...

@endcomponent --}} @php $background = $background ?? 'transparent'; // Get background from centralized config or use custom value if (isset($sectionBackgrounds[$background])) { $bg = $colors[$sectionBackgrounds[$background]] ?? '#faf8f5'; } else { // Allow custom hex values as fallback $bg = $background; } @endphp
{{ $slot }}