@php $floatingButton = collect($floatingButton)->pluck('value', 'key'); $title = $floatingButton->get('title'); $bgColor = $floatingButton->get('background_color'); $bgColor = $bgColor === 'transparent' ? 'var(--primary-color)' : $bgColor; $enableRingAnimation = $floatingButton->get('enable_ring_animation'); $marginBetween = setting('fob-floating-buttons.margin_between', 0); $url = $floatingButton->get('url'); switch ($floatingButton->get('type')) { case 'phone': $url = 'tel:' . $url; break; case 'email': $url = 'mailto:' . $url; break; case 'whatsapp': $url = 'https://wa.me/' . $url; break; } @endphp