coolify/resources/views/components/helper.blade.php

14 lines
512 B
PHP
Raw Normal View History

2024-03-25 11:33:38 +01:00
<div {{ $attributes->merge(['class' => "group"]) }}>
<div class="info-helper">
2023-06-15 09:15:41 +02:00
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" class="w-4 h-4 stroke-current">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
2023-08-11 20:19:42 +02:00
d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
2023-06-15 09:15:41 +02:00
</svg>
</div>
<div class="info-helper-popup">
2023-09-06 14:31:38 +02:00
<div class="p-4">
2023-06-15 09:15:41 +02:00
{!! $helper !!}
</div>
</div>
</div>