{{-- Composant Tooltip d'aide réutilisable --}} @props([ 'text' => '', 'position' => 'top', // top, bottom, left, right 'icon' => 'info' ]) @php $positionClasses = match($position) { 'top' => 'bottom-full left-1/2 -translate-x-1/2 mb-2', 'bottom' => 'top-full left-1/2 -translate-x-1/2 mt-2', 'left' => 'right-full top-1/2 -translate-y-1/2 mr-2', 'right' => 'left-full top-1/2 -translate-y-1/2 ml-2', default => 'bottom-full left-1/2 -translate-x-1/2 mb-2' }; $arrowClasses = match($position) { 'top' => 'top-full left-1/2 -translate-x-1/2 border-t-gray-900', 'bottom' => 'bottom-full left-1/2 -translate-x-1/2 border-b-gray-900', 'left' => 'left-full top-1/2 -translate-y-1/2 border-l-gray-900', 'right' => 'right-full top-1/2 -translate-y-1/2 border-r-gray-900', default => 'top-full left-1/2 -translate-x-1/2 border-t-gray-900' }; @endphp